/* 
===================================================================
STYLE.CSS - WordPress Plugin Stylesheet
===================================================================
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
}

/* Custom styling for sliders to ensure a consistent look */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0ea5e9; /* sky-500 */
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0ea5e9; /* sky-500 */
    cursor: pointer;
}

/* Animation for the schedule table reveal */
#schedule-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}

#schedule-container.show {
    max-height: 500px; /* Adjust as needed */
    overflow-y: auto;
}