/* Booking Calender Design  */


.entry-title {
    text-align: center;
}

.post-535 {
    max-width: 1000px;
    margin: 0 auto !important;
}

.entry-content form:first-child {
    width: 100%;
    max-width: 700px;
    margin: 25px auto;
    text-align: left;
    background-color: #fff;
    padding: 30px 40px;
    display: grid;
    gap: 12px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    font-family: var(--font-p, 'Inter', sans-serif);
}

#trainer-filter form {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

#trainer-filter select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cfd8e3;
    background-color: #f8fbff;
    font-size: 16px;
    color: #212121;
    transition: all 0.3s ease;
    outline: none;
}


#trainer-filter label {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #1a3c6b;
    font-size: 15px;
    margin-top: 6px;
}

/* Each pair acts as a single flex item */
#trainer-filter select+label {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 220px;
}

/* Stack vertically on tablet/mobile */
@media screen and (max-width: 991px) {
    #trainer-filter select+label {
        flex: 1 1 100%;
    }

    #trainer-filter form {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
    }

        #trainer-filter label{
            width: 100%;
            text-align: left;
        }
}


/* Label styling */
#trainer-filter label,
.entry-content form:first-child label {
    font-weight: 600;
    color: #1a3c6b !important;
    font-size: clamp(16px, 2.5vw, 18px);
    display: block;
    margin-bottom: 6px;
}

/* Select dropdowns */
.entry-content form:first-child select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cfd8e3;
    background-color: #f8fbff;
    font-size: 16px;
    color: #212121;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

/* Hover & focus effect */
.entry-content form:first-child select:hover,
.entry-content form:first-child select:focus {
    border-color: #216ADC;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(33, 106, 220, 0.15);
}

/* Remove extra <br> gaps */
.entry-content form:first-child br {
    display: none;
}

/* Optional form spacing */
.entry-content form:first-child label+select {
    margin-bottom: 10px;
}

#trainer-slots {
    margin-top: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

#trainer-slots .trainer-book-form {
    padding: 18px;
    border-radius: 12px;
    background-color: #f8fbff;
    border: 1px dashed #cdd9ea;
}

/* Section title */
#trainer-slots .avl-slots {
    font-size: 22px;
    font-weight: 700;
    color: #02528a;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Message or slot area */
#slot-output {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    padding: 18px;
    transition: all 0.3s ease;
}

.green-cube {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #7bbd7b;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.calendar-loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    /* adjust based on your layout */
}

/* Fancy animation loader */
.loader {
    --s: 64px;
    width: var(--s);
    aspect-ratio: 2;
    --_g: #02528a 90%, #0000;
    /* changed to site blue color */
    background:
        radial-gradient(farthest-side, var(--_g)) 0 50% / 25% 50%,
        radial-gradient(farthest-side at bottom, var(--_g)) 50% calc(50% - var(--s)/16) / 25% 25%,
        radial-gradient(farthest-side at top, var(--_g)) 50% calc(50% + var(--s)/16) / 25% 25%,
        radial-gradient(farthest-side at bottom, var(--_g)) 100% calc(50% - var(--s)/16) / 25% 25%,
        radial-gradient(farthest-side at top, var(--_g)) 100% calc(50% + var(--s)/16) / 25% 25%;
    background-repeat: no-repeat;
    animation: l14 1s infinite;
}

@keyframes l14 {
    25% {
        background-position: 0 50%, 50% 0, 50% 100%, 100% 0, 100% 100%
    }

    50% {
        background-position: 100% 50%, 0 0, 0 100%, 50% 0, 50% 100%
    }

    75%,
    100% {
        background-position: 100% 50%, 0 calc(50% - var(--s)/16), 0 calc(50% + var(--s)/16), 50% calc(50% - var(--s)/16), 50% calc(50% + var(--s)/16)
    }
}

.booking-form-title {
    font-weight: 600;
    color: #1a3c6b !important;
    font-size: clamp(16px, 2.5vw, 18px);
    display: block;
    margin-bottom: 6px;
}


#booking-form input {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    height: 48px;
    font-weight: 500;
    color: #555 !important;
    font-size: clamp(16px, 2.5vw, 18px);
}

#booking-form textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    min-height: 120px;
    resize: vertical;
    font-weight: 500;
    color: #555 !important;
    font-size: clamp(16px, 2.5vw, 18px);
}

#booking-form input::placeholder,
#booking-form textarea::placeholder {
    color: #777;
    font-weight: 400;
    font-size: clamp(15px, 2.4vw, 17px);
    opacity: 1;
}





/* Responsive */
@media (max-width: 600px) {
    .entry-content form:first-child {
        padding: 20px;
        gap: 18px;
    }

    .entry-content form:first-child label {
        font-size: 16px;
    }

    .entry-content form:first-child select {
        font-size: 15px;
        padding: 10px;
    }

    #trainer-slots {
        padding: 25px 20px;
    }

}
@media (max-width: 400px) {
    .fc-toolbar-title {
        font-size: 18px !important;
    }

  

}