/* FORM PENDAFTARAN */
.pendaftaran-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.pendaftaran-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.pendaftaran-form .form-group {
    margin-bottom: 20px;
}
.pendaftaran-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.pendaftaran-form input[type="text"],
.pendaftaran-form input[type="email"],
.pendaftaran-form input[type="number"],
.pendaftaran-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pendaftaran-form input[type="submit"] {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.pendaftaran-form input[type="submit"]:hover {
    background: #388E3C;
}

/* DAFTAR PESERTA */
.daftar-peserta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.daftar-peserta {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.peserta-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.peserta-table th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}
.peserta-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.peserta-table tr:hover td {
    background-color: #f9f9f9;
}

/* STATUS PENDAFTARAN */
.status-pendaftaran-container {
    margin: 20px 0;
}
.status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.status-table th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}
.status-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* CEK STATUS FORM */
.cek-status-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.cek-status-form .form-group {
    margin-bottom: 20px;
}
.cek-status-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.cek-status-form input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.cek-status-form input[type="submit"] {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease
}
.cek-status-form input[type="submit"]:hover {
    background: #1976D2;
}

/* NOTICE */
.notice {
    margin: 5px 0 15px;
    padding: 10px;
    border-left: 4px solid;
}
.notice-success {
    border-color: #46b450;
    background: #f7fff7;
}
.notice-error {
    border-color: #dc3232;
    background: #fff7f7;
}
.notice-info {
    border-color: #00a0d2;
    background: #f7fcff;
}

/* STATUS */
.status-pending {
    color: #FF9800;
    background: #FFF3E0;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
}
.status-verified {
    color: #4CAF50;
    background: #E8F5E9;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
}


/*=====================



/*======================profile
/* Profil Peserta */
.pu-profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pu-profile-header {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pu-profile-detail p {
    margin: 5px 0;
    font-size: 16px;
}

/* Riwayat Pendaftaran */
.pu-riwayat-section {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pu-riwayat-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.pu-riwayat-table th {
    background: #f5f7fa;
    padding: 12px 15px;
    text-align: left;
}

.pu-riwayat-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* Jadwal Ujian */
.pu-jadwal-section {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pu-jadwal-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.pu-jadwal-item {
    background: #f8f9fa;
    border-left: 3px solid #3498db;
    padding: 15px;
    border-radius: 3px;
}

.pu-jadwal-item h4 {
    margin-top: 0;
    color: #2c3e50;
}

.pu-jadwal-meta {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.pu-jadwal-lokasi {
    font-size: 0.95em;
    line-height: 1.5;
}

/* Status */
.pu-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
}

.pu-status-pending {
    background: #fff3e0;
    color: #ff9800;
}

.pu-status-verified {
    background: #e8f5e9;
    color: #4caf50;
}

/* Link */
.pu-bukti-link {
    color: #2196f3;
    text-decoration: none;
}

.pu-download-link {
    display: inline-block;
    padding: 5px 10px;
    background: #4CAF50;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.pu-download-link:hover {
    background-color: #0d8d1c; /* Warna kuning lebih tua saat hover */
    color: #000; /* Teks lebih gelap saat hover */
}


table.pu-riwayat-table a.pu-download-link2[download] {
    background-color: #dfd853;
    color: #14263e !important;;
    border: 1px solid #D4AF37;
}

/* Responsif */
@media (max-width: 768px) {
    .pu-jadwal-container {
        grid-template-columns: 1fr;
    }
    
    .pu-riwayat-table {
        display: block;
        overflow-x: auto;
    }
}

.form-text {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

input[type="tel"] {
    direction: ltr;
    text-align: left;
}



.pu-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    height: 90%;
    max-width: 900px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation: pu-modalopen 0.3s;
}

.pu-close-modal:hover,
.pu-close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



.pu-modal-body {
    padding: 2px 16px;
    height: calc(100% - 40px);
}

.pu-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 5px 15px;
}

/* Tambahkan di file CSS Anda */
.pu-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.pu-button {
    padding: 8px 16px;
    min-width: 80px;
}

.pu-modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

.pu-modal-content input[type="url"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
}

.pu-modal-content .pu-button {
    margin-right: 10px;
}


.pu-button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-right: 5px;
}

.pu-button:hover {
    background-color: #135e96;
}

.pu-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}


.pu-modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

.pu-modal-content input[type="url"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    box-sizing: border-box;
}

.pu-belum-ada {
    color: #999;
    font-style: italic;
}



/* Tombol Tolak */
.button-reject {
    background: #ffb900;
    color: #1d2327;
}

.button-reject:hover {
    background: #dba617;
}

/* Tombol Download Sertifikat */
.pu-download-link {
    display: inline-block;
    padding: 5px 10px;
    background: #4CAF50;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

.pu-download-link:hover {
    background: #388E3C;
}

.pu-expired-notice {
    color: #d63638;
    font-size: 13px;
}

/* Status Sertifikat */
small {
    display: block;
    color: #666;
    font-size: 0.8em;
    margin-top: 3px;
}

/* Info Sertifikat */
.pu-riwayat-table small {
    display: block;
    color: #666;
    font-size: 0.8em;
    line-height: 1.4;
    margin-top: 3px;
}

.pu-expired-notice {
    color: #d63638;
    font-weight: 500;
    font-size: 13px;
}

/* Tombol Download MUK */
.pu-download-link-muk {
    display: inline-block;
    padding: 5px 10px;
    background: #2196F3;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

.pu-download-link-muk:hover {
    background: #0b7dda;
}

.pu-belum-ada {
    color: #666;
    font-style: italic;
    font-size: 13px;
}