/* css/peserta_bimbingan.css */

/* Gaya untuk card utama */
.peserta-bimbingan-card {
    border-color:#57abef ;
    background-color: #e9edef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Gaya untuk tabel peserta bimbingan */
.peserta-bimbingan-table thead th {
    background-color:#57abef;
    border-style:black ;
    color: rgb(242, 233, 233);
    font-weight: 600;
    vertical-align: middle;
}

.peserta-bimbingan-table tbody tr:hover {
    background-color: #e2f2ff; /* Warna hover standar */
}

/* Gaya untuk tombol aksi di tabel */
.peserta-bimbingan-table .btn.btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

#pesertaDetailModal .modal-header {
    border-color:#57abef ;
    background-color: #e9edef;
}

#pesertaDetailModal .modal-body strong {
    color: var(--pembina-dark-color); /* Warna teks bold hijau gelap */
}

#pesertaDetailModal .modal-body .download-btn {
    margin-top: 0;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    color: var(--pembina-primary-color);
    border-color: var(--pembina-primary-color);
}

#pesertaDetailModal .modal-body .download-btn:hover {
    background-color: var(--pembina-primary-color);
    color: white;
}

#pesertaDetailModal .modal-body .download-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status badge (pastikan ini konsisten di seluruh aplikasi) */
.status-badge {
    padding: 0.25em 0.6em;
    width: fit-content; 
    border-radius: 0.35rem;
    font-weight: 600;
    font-size: 0.75em;
    white-space: nowrap;
}

.status-pending {
    background-color: #ffc107; /* Kuning */
    color: #664d03;
}

.status-diterima, .status-approved {
    background-color: #28a745; /* Hijau */
    color: white;
}

.status-ditolak, .status-rejected {
    background-color: #dc3545; /* Merah */
    color: white;
}

/* Tambahan styling untuk modal peserta detail */
#pesertaDetailModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}

#pesertaDetailModal .modal-body p {
    margin-bottom: 0.25rem;
    color: #333;
}

#pesertaDetailModal .modal-body hr {
    margin: 1rem 0;
    border-top: 2px dashed #060505;
}
