.btn {
    background-color: #606a92;
    color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #FF4E00;
    color: #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.table {
    color: #606a92;
    font-size: small;
    border-collapse: collapse; 
    width: 100%;
    margin-bottom: 20px;
}

.table th {
    background-color: #606a92;
    color: #fff;
}


.table:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.card-body{
    font-size: smaller;
    padding-top: 10px;
    color: #2d345e;
    
}
.card-header{
    background-color: #606a92;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
