.fina-points-page {
    background-color: #f5f5f9;
}

.fina-points{
    max-width: 700px; /* Adjust the width as needed */
    margin: 80px auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.form-group-fina,
.form-group-fina-time {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 120px;
    
}

.form-group-fina-time {
    margin-top: 20px;
    margin-bottom: 20px;
    
}

.form-group-fina.label-group,
.form-group-fina-time.label-group{
    flex-grow: 1;
    width: 100%;
}


.form-group-fina.switch-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    width: 120px;
}

.form-group-fina label,
.form-group-fina-time  label{
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.separator {
    border-left: 2px solid #00BFFF;
    height: auto;
    margin: 0 10px;
}

.custom-button-group {
    display: flex;
    flex:1;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-button-group button {
    flex: 1;
    padding: 6px 5px;
    border: 1px solid #00BFFF;
    border-radius: 3px;
    background-color: #f5f5f9;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 40px;
}

.custom-button-group button.active,
.custom-button-group button:hover {
    background-color: #00BFFF;
    color: white;
}

.btn-fina {
    padding: 10px 20px;
    border: none;
    border-radius: 4em;
    background-color: #19167a;
    color: white;
    font-size: 14px;
    cursor: pointer;
    width: 120px;
    transition: background-color 0.3s;
    transition-duration: 0.4s;
}

.btn-fina:hover {
    transition-duration: 0.1s;
    background-color: #1814a8;
}

/*@keyframes clickAnimation {*/
/*    0% {*/
/*        transform: scale(1);*/
/*        box-shadow: 0 0 0 rgba(0, 0, 0, 0);*/
/*    }*/
/*    50% {*/
/*        transform: scale(0.95);*/
/*        box-shadow: 0 8px 16px rgba(173, 216, 230, 0.7), */
/*                    0 -8px 16px rgba(173, 216, 230, 0.7), */
/*                    8px 0 16px rgba(173, 216, 230, 0.7), */
/*                    -8px 0 16px rgba(173, 216, 230, 0.7);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1);*/
/*        box-shadow: 0 0 0 rgba(0, 0, 0, 0);*/
/*    }*/
/*}*/

/* Trigger animation on click */
/*.btn-actions:active {*/
/*    animation: clickAnimation 0.2s ease-out;*/
/*}*/


.separator-label {
    font-size: 25px;
    vertical-align: bottom;
}

.time-input-switch-group {
    display: flex;
    align-items: center;
    gap: 10px; 
}


.time-input-group {
    display: flex;
    gap: 5px;
    flex-grow: 1;
    justify-content: space-between;
}


.time-input{
    width: 100%;
    padding: 10px;
    border: 1px solid #00BFFF;
    border-radius: 3px;
    font-size: 14px;
    /*height: 40px; */
    
}


.timeSection{
    display: flex;
    width: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 94px;
    height: 40px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #19167a;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider .label-time, .slider .label-point {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 5px;
    pointer-events: none;
}

.slider .label-time {
    right: 5px; /* Align to the right */
}

.slider .label-point {
    left: 5px; /* Align to the left */
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(54px);
    -ms-transform: translateX(54px);
    transform: translateX(54px);
}

.slider.round:before {
    content: "";
    position: absolute;
    height: 32px;
    width: 32px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.separator-label {
font-size: 25px; /* Adjust font size as needed */
vertical-align: bottom;
}
