/* =============================================================
   STAFF — Barra lateral, ranking, gestión de personal
   ============================================================= */

.staff-row { /* ya está en base, pero podemos añadir específicos */ }
.day-off-badge {
  font-size: 10px; padding: 4px 10px; border-radius: 20px; font-weight: 600;
  background: #e2e8f0; color: var(--text-muted); cursor: pointer; transition: 0.2s;
}
.day-off-badge.resting { background: #fee2e2; color: var(--danger); }
.day-off-badge:hover { filter: brightness(0.95); }

/* Perfil en el staff */
.profile-card-rpg {
  background: #1e293b;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: white;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.1);
}
.profile-avatar { font-size: 60px; margin-bottom: 10px; display: block; }
.profile-header h2 { margin: 5px 0; font-size: 24px; letter-spacing: 1px; }
.profile-rank-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.profile-stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.stat-item small { display: block; font-size: 10px; color: #1e293b; margin-bottom: 4px; font-weight: 700; }
.stat-item b { font-size: 18px; }

/* Gestión de staff (admin) */
.admin-staff-manager {
  margin-top: 25px;
  border-top: 1px solid #E5E5EA;
  padding-top: 20px;
}
.admin-staff-manager__h3-1 {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #8e8e93;
  text-transform: uppercase;
}
.admin-staff-manager__div-1 { text-align: center; padding: 16px 0 8px; }
.abrir-gestor-staff {
  background: #6C63FF;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(108,99,255,0.3);
  width: 100%;
}