/* assets/css/staff.css */
.staff-container { max-width: 1400px; margin: 40px auto; padding: 0 20px; }

.staff-header-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }

.status-toggle { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: #22c55e; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }

/* Filtres */
.server-selector { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.srv-filter { 
    padding: 10px 20px; border-radius: 12px; background: #13141c; border: 1px solid #1e202d; 
    color: var(--text-muted); cursor: pointer; font-weight: 800; transition: 0.2s; 
}
.srv-filter.active { background: var(--primary-blue); color: white; border-color: var(--primary-blue); box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3); }

/* Table */
.ticket-table-wrapper { background: #13141c; border: 1px solid #1e202d; border-radius: 20px; overflow: hidden; }
.staff-table { width: 100%; border-collapse: collapse; text-align: left; }
.staff-table th { background: #1a1c28; padding: 20px; font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); font-weight: 900; }
.staff-table td { padding: 20px; border-bottom: 1px solid #1e202d; color: white; font-weight: 600; font-size: 0.9rem; }
.staff-table tr:hover td { background: rgba(255,255,255,0.02); }

.btn-open { 
    padding: 8px 15px; border-radius: 8px; background: #1e202d; color: white; 
    text-decoration: none; font-size: 0.8rem; font-weight: 800; border: 1px solid #2a2e40; transition: 0.2s;
}
.btn-open:hover { background: var(--primary-blue); border-color: var(--primary-blue); }

.badge-staff { background: rgba(59, 130, 246, 0.1); color: var(--primary-blue); padding: 5px 15px; border-radius: 20px; font-weight: 900; font-size: 0.75rem; border: 1px solid var(--primary-blue); }
/* assets/css/staff.css */

.staff-body { background-color: #0a0b10; }
.staff-nav { border-bottom: 2px solid var(--primary-blue); background: rgba(13, 15, 24, 0.95); }

.staff-indicator { display: flex; align-items: center; gap: 10px; background: rgba(59, 130, 246, 0.1); padding: 8px 15px; border-radius: 12px; border: 1px solid rgba(59, 130, 246, 0.2); }
.pulse-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); opacity: 0.7; } 70% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.7; } }
.staff-rank { font-weight: 900; font-size: 0.75rem; color: white; text-transform: uppercase; letter-spacing: 1px; }

.text-blue { color: var(--primary-blue); }
.text-green { color: #22c55e; }

/* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.team-card { background: #13141c; border: 1px solid #1e202d; border-radius: 20px; padding: 20px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.team-card:hover { transform: translateY(-5px); border-color: var(--primary-blue); }
.team-avatar { width: 55px; height: 55px; border-radius: 15px; border: 2px solid #1e202d; }
.team-info h4 { margin: 0; font-size: 1.1rem; font-weight: 900; color: white; }
.team-info p { margin: 2px 0 0 0; font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; }
.team-status { font-size: 0.7rem; margin-top: 5px; display: flex; align-items: center; gap: 5px; font-weight: 700; }