/* ================= PPDB ================= */

.ppdb-section{
    min-height:100vh;
    background:#dfe6ee;
    padding:60px 20px;
}

.ppdb-box{
    max-width:1100px;
    margin:auto;
    background:white;
    padding:45px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    text-align:center;
}

.ppdb-box h1{
    color:#0a81dc;
    font-size:42px;
    margin-bottom:10px;
}

.subjudul{
    color:#222;
    font-size:20px;
    margin-bottom:35px;
}

/* MENU PPDB */
.ppdb-menu{
    margin-bottom:35px;
}

.ppdb-menu a{
    display:inline-block;
    margin:5px;
    padding:10px 20px;
    background:#001b8f;
    color:white;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
}

.ppdb-menu a:hover{
    background:#0a81dc;
}

/* INFO CARD */
.ppdb-grid-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:35px;
}

.ppdb-card{
    background:#001b8f;
    color:white;
    padding:25px;
    border-radius:15px;
    text-align:left;
}

.ppdb-card h3{
    margin-bottom:15px;
}

.ppdb-card ul{
    padding-left:20px;
}

.ppdb-card li{
    margin-bottom:8px;
}

/* PENGUMUMAN */
.pengumuman-box{
    background:#f8f9fb;
    padding:25px;
    border-radius:15px;
    margin-top:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.12);
    text-align:left;
}

.pengumuman-box h2{
    color:#001b8f;
    margin-bottom:15px;
}

.pengumuman-box p{
    color:#222;
    font-size:18px;
    line-height:1.7;
}

/* FORM PPDB */
.form-ppdb{
    max-width:750px;
    margin:30px auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-ppdb input,
.form-ppdb select,
.form-ppdb textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.form-ppdb input:focus,
.form-ppdb select:focus,
.form-ppdb textarea:focus{
    border-color:#0a81dc;
    box-shadow:0 0 0 3px rgba(10,129,220,0.15);
}

.form-ppdb textarea{
    min-height:130px;
    resize:vertical;
}

.form-ppdb button{
    background:#ffc107;
    color:#000;
    border:none;
    padding:15px;
    border-radius:30px;
    font-weight:bold;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.form-ppdb button:hover{
    background:#ffb300;
    transform:scale(1.02);
}

/* TABEL PPDB */
.table-ppdb{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
}

.table-ppdb th{
    background:#0a81dc;
    color:white;
    padding:12px;
}

.table-ppdb td{
    border:1px solid #ddd;
    padding:12px;
}

.status{
    background:#ffc107;
    color:#000;
    padding:6px 12px;
    border-radius:20px;
    font-weight:bold;
}

/* TOMBOL KEMBALI */
.btn-kembali{
    display:inline-block;
    margin-top:15px;
    color:#0a81dc;
    font-weight:bold;
    text-decoration:none;
}

.btn-kembali:hover{
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
    .ppdb-grid-info{
        grid-template-columns:1fr;
    }

    .ppdb-box{
        padding:30px 20px;
    }

    .ppdb-box h1{
        font-size:32px;
    }
}