﻿/* =====================================================
    STYLE HALAMAN MANAJEMEN & GURU
   SMK TI Bali Global Badung
   ===================================================== */

/* Foto header staf (biar langsung keliatan vibesnya) */
.staff-photo-header {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.staff-photo-header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tabel data staf (biar rapi dan gampang dibaca) */
.staff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.staff-table thead {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.staff-table th {
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.staff-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: #e2e8f0;
    font-size: 0.9rem;
}

.staff-table tbody tr {
    transition: all 0.3s ease;
}

.staff-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.1);
}

.staff-table tbody tr:last-child td {
    border-bottom: none;
}

/* Badge role/jabatan */
.role-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.role-badge.management {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.role-badge.teacher {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.role-badge.staff {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Kategori staf (dikelompokin biar gak campur aduk) */
.staff-category {
    margin-bottom: 50px;
}

.staff-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.staff-category h3 i {
    color: #3b82f6;
}

/* Badge jumlah staff */
.staff-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 30px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-left: auto;
}

.staff-count strong {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Tabel responsif (biar kebaca di HP) */
@media (max-width: 768px) {
    .staff-table {
        display: block;
        overflow-x: auto;
    }
    
    .staff-table th,
    .staff-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Mode terang (light mode) */
[data-theme="light"] .staff-table {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .staff-table td {
    color: #334155;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .staff-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

[data-theme="light"] .staff-count {
    background: rgba(59, 130, 246, 0.08);
    color: #64748b;
}
