.ppdb-page {
    padding: 40px 0;
}

.ppdb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.ppdb-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.ppdb-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.ppdb-btn:hover {
    opacity: 0.92;
}

/* SEARCH */
.ppdb-search {
    margin-bottom: 20px;
}

.ppdb-search input {
    width: 280px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

/* TABLE */
.ppdb-table-wrapper {
    overflow-x: auto;
}

.ppdb-table {
    width: 100%;
    border-collapse: collapse;
}

.ppdb-table th {
    background: var(--primary);
    color: #fff;
    padding: 14px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.ppdb-table td {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

/* STATUS */
.ppdb-status {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.ppdb-status.diterima {
    background: var(--primary);
    color: #fff;
}

.ppdb-status.ditolak {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.ppdb-table td:first-child,
.ppdb-table th:first-child {
    text-align: center;
}

@media (max-width: 768px) {
    .ppdb-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ppdb-search input {
        width: 100%;
    }

    .ppdb-title {
        font-size: 22px;
    }
}