body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.page-banner {
    padding: 80px 0;
    background: var(--theme-gradient);
}

.filter-section {
    padding: 50px 0 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 70px;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.search-control {
    height: 52px !important;
    padding-left: 48px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc !important;
    font-size: 15px;
    color: #334155;
    transition: all 0.3s ease;
}

.search-control:focus {
    border-color: var(--theme-secondary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px var(--theme-mint-light) !important;
    outline: none;
}

.filter-select {
    height: 52px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc !important;
    font-size: 15px;
    padding: 10px 18px !important;
    color: #334155;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: var(--theme-secondary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px var(--theme-mint-light) !important;
    outline: none;
}

.schedule-section {
    padding: 60px 0 100px;
    background-color: #f8fafc;
}

/* Premium Schedule Card Design */
.jadwal-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.jadwal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--theme-primary);
    opacity: 0.8;
}

.jadwal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--theme-shadow-hover);
    border-color: rgba(11, 92, 59, 0.2);
}

.doctor-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(11, 92, 59, 0.15);
    background: #f1f5f9;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.doctor-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-badge {
    background-color: rgba(108, 197, 155, 0.12);
    color: var(--theme-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(11, 92, 59, 0.15);
}

.specialty-text {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
}

.doctor-name {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.3;
    font-family: 'Raleway', sans-serif;
}

.time-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px dashed #e2e8f0;
    margin-bottom: 20px;
    margin-top: auto;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.time-item i {
    color: var(--theme-primary);
    font-size: 16px;
}

.day-badge {
    background-color: #e2e8f0;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-booking-inline {
    background: var(--theme-gradient);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--theme-shadow);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    display: block;
    text-decoration: none;
}

.btn-booking-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow-hover);
    background: var(--theme-gradient-hover);
}

.btn-booking-inline:active {
    transform: translateY(1px);
}

/* Empty state styling */
#no-results-msg {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-top: 20px;
}

/* Animation */
.jadwal-card-wrapper {
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .filter-section {
        position: static;
        padding: 30px 0 15px;
    }
}

.border-bottom-dashed {
    border-bottom: 1px dashed #e2e8f0;
}

.border-bottom-dashed:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.btn-booking-mini {
    background-color: var(--theme-primary);
    color: #ffffff !important;
    border: none;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(11, 92, 59, 0.15);
}

.btn-booking-mini:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(11, 92, 59, 0.25);
    color: #ffffff !important;
}
