html{
    scroll-behavior:smooth;
}

.ppa-schedule-page{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.ppa-schedule-header{
    text-align:center;
    margin-bottom:30px;
}

.ppa-schedule-header h1{
    font-size:42px;
    margin-bottom:10px;
}

.ppa-schedule-header p{
    color:#666;
}

.ppa-filter-bar,
.ppa-date-nav{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.filter-btn,
.ppa-date-nav a{
    border:none;
    background:#d4af37;
    color:#000;
    padding:10px 18px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    text-decoration:none;
}

.filter-btn.active{
    background:#000;
    color:#fff;
}

.schedule-day{
    margin-top:60px;
}

.schedule-day h2{
    margin-bottom:25px;
    border-bottom:2px solid #eee;
    padding-bottom:10px;
}

.schedule-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.schedule-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.schedule-card h3{
    margin:12px 0 8px;
    font-size:20px;
}

.schedule-card p{
    margin:0 0 10px;
    color:#666;
}

.batch-badge{
    display:inline-block;
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.june{
    background:#fff4d1;
    color:#8a6a00;
}

.march{
    background:#dff1ff;
    color:#005b99;
}

.may{
    background:#dff8e5;
    color:#167a34;
}

@media(max-width:768px){

    .ppa-schedule-page{
        padding:40px 15px;
    }

    .ppa-schedule-header h1{
        font-size:30px;
    }

    .schedule-day h2{
        font-size:22px;
    }

}
.schedule-details{
    margin-top:12px;
}

.schedule-details div{
    margin-bottom:8px;
    color:#555;
    font-size:15px;
    line-height:1.5;
}

.schedule-card{
    transition:all .3s ease;
}

.schedule-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}