/* ==========================================================================
  LOGIN, TARJETA DE ACCESO Y CONTROLES DE SESION
   ========================================================================== */
/* Variables globales del tema */
:root {
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
/* Estilos base del documento o estado del cuerpo */
body {
  width: 100%;
  min-height: 100%;
}

/* Estilos base del documento o estado del cuerpo */
body {
  margin: 0;
  font-family: var(--font-family);
}

/* Estilos base del documento o estado del cuerpo */
body:not(.dashboard-mode) {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}

body:not(.dashboard-mode) #app_loader,
/* Estilos base del documento o estado del cuerpo */
body:not(.dashboard-mode) .bg-animation {
  position: fixed;
  inset: 0;
}

/* Control de visibilidad para evitar parpadeos (FOUC) */
body.app_cargando #app_card,
/* Estilos base del documento o estado del cuerpo */
body.auth-bootstrapping #app_card {
  display: none !important;
  visibility: hidden !important;
}

body.app_cargando #app_loader,
/* Estilos base del documento o estado del cuerpo */
body.auth-bootstrapping #app_loader {
  display: flex !important;
  visibility: visible !important;
}

/* Estilo para #frm_login */
#frm_login {
  display: none;
}

/* Estilos base del documento o estado del cuerpo */
body:not(.dashboard-mode) #frm_login.visible {
  display: block !important;
}

/* ==========================================================================
  CONTENEDOR DE TARJETA (GLASSMORPHISM)
   ========================================================================== */
/* Contenedor o bloque principal */
.cristal_card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 40px var(--card-glow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  margin: 20px;
}

/* Contenedor o bloque principal */
.cristal_card:hover {
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 1px 5px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 50px rgba(99, 102, 241, 0.08);
}

/* Contenedor o bloque principal */
.seccion_card {
  width: 100%;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Estilos del encabezado */
.header_card {
  text-align: center;
  margin-bottom: 32px;
}

/* Contenedor o bloque principal */
.logo_contenedor {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Logo imagen (reemplaza el SVG) */
.logo_imagen_contenedor {
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* Estilo para .logo_imagen */
.logo_imagen {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Estilo para .logo */
.logo {
  width: 32px;
  height: 32px;
}

/* Estilo para h1, h2 del header del login */
.header_card h1,
.header_card h2,
.seccion_card h1,
.seccion_card h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Estilo para .lbl_subtitulo */
.lbl_subtitulo {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
  FORMULARIOS Y CAMPOS DE ENTRADA
   ========================================================================== */
/* Estilo para form de acceso */
#form_login,
.seccion_card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Estilo para .group_input */
.group_input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

/* Estilo para .group_input label */
.group_input label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Estilo para .row_label */
.row_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contenedor o bloque principal */
.wrapper_input {
  position: relative;
  display: flex;
  align-items: center;
}

/* Contenedor o bloque principal */
.wrapper_input input,
#form_login .wrapper_input input,
.cristal_card .wrapper_input input {
  width: 100% !important;
  height: 48px !important;
  background: var(--card-bg, rgba(255, 255, 255, 0.04)) !important;
  border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08)) !important;
  border-radius: 12px !important;
  padding: 0 44px 0 44px !important;
  color: var(--text-main, #fff) !important;
  font-family: var(--font-family) !important;
  font-size: 15px !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: var(--transition-smooth) !important;
}

/* Contenedor o bloque principal */
.wrapper_input input:focus,
#form_login .wrapper_input input:focus,
.cristal_card .wrapper_input input:focus {
  background: var(--card-bg, rgba(255, 255, 255, 0.07)) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px var(--primary-glow) !important;
}

/* Contenedor o bloque principal */
.wrapper_input input::placeholder {
  color: var(--text-muted, rgba(255, 255, 255, 0.25)) !important;
}

/* Estilo para .icon_input */
.icon_input {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 2;
}

/* Contenedor o bloque principal */
.wrapper_input input:focus~.icon_input {
  color: var(--primary);
}

/* Mostrar/Ocultar contraseña superpuesto */
.btn_ver_password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-fast);
  z-index: 2;
}

/* Estilos del boton o accion */
.btn_ver_password:hover {
  color: #fff;
}

/* Estilo para .icon_ojo */
.icon_ojo {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 0.15s ease;
}

/* Estilo para .icon_ojo.oculto */
.icon_ojo.oculto {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
  BOTONES
  ========================================================================== */
/* Estilos del boton o accion */
.btn_principal,
#form_login #btn_login,
.cristal_card .btn_principal {
  width: 100% !important;
  height: 48px !important;
  background: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 12px !important;
  padding: 0 20px !important;
  color: #fff !important;
  font-family: var(--font-family) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: var(--transition-smooth) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  margin-top: 10px !important;
  box-sizing: border-box !important;
}

/* Estilos del boton o accion */
.btn_principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* Estilos del boton o accion */
.btn_principal:active {
  transform: translateY(0);
}

/* Estilos del boton o accion */
.btn-secondary {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  margin-top: 24px;
}

/* Estilos del boton o accion */
.btn-secondary:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Estilos del boton o accion */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Estilos del boton o accion */
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Estilos del boton o accion */
.btn-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
  ESTADO DE CARGA (SPINNER)
   ========================================================================== */
/* Estilo para .spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  position: absolute;
  display: none;
}

/* Spinner visible en modo día */
.light-theme .spinner {
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: #1e293b;
}

/* Estilos del boton o accion */
.btn_principal.loading .txt_btn {
  visibility: hidden;
  opacity: 0;
}

/* Estilos del boton o accion */
.btn_principal.loading .spinner {
  display: block !important;
}

/* ==========================================================================
  ESTILOS DE HISTORIAL DE CONEXIONES
   ========================================================================== */
/* Estilos del historial y sus estados */
.login-history-container {
  margin-top: 24px;
  text-align: left;
}

/* Estilos del historial y sus estados */
.login-history-container h3 {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Estilos del historial y sus estados */
.history-list {
  max-height: 160px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
}

/* Scrollbar Personalizado */
.history-list::-webkit-scrollbar {
  width: 4px;
}

/* Estilos del historial y sus estados */
.history-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

/* Estilos del historial y sus estados */
.history-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Estilos del historial y sus estados */
.history-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Estilos del historial y sus estados */
.history-item {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition-fast);
}

/* Estilos del historial y sus estados */
.history-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Estilos del historial y sus estados */
.history-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
}

/* Estilos del historial y sus estados */
.history-item-device {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Estilos del historial y sus estados */
.history-item-ip {
  color: #a78bfa;
  font-family: monospace;
}

/* Estilos del historial y sus estados */
.history-item-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 11px;
}

.history-item-placeholder,
/* Estilos del historial y sus estados */
.history-item-empty {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme h1, body.light-theme h2 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--text-main);
  color: var(--text-main);
}

body.light-theme .lbl_subtitulo { color: var(--text-muted); }
body.light-theme .group_input label { color: var(--text-muted); }
body.light-theme .btn_ver_password { color: var(--text-muted); }
body.light-theme .btn_ver_password:hover { color: var(--text-main); }

/* Estilos base del documento o estado del cuerpo */
body.light-theme .wrapper_input input {
  background: var(--card-bg, rgba(255, 255, 255, 0.6));
  border-color: var(--card-border, rgba(0, 0, 0, 0.2));
  color: var(--text-main, #0f172a);
}

body.light-theme .wrapper_input input:focus { background: var(--bg-primary); }
body.light-theme .wrapper_input input::placeholder { color: var(--text-muted); }

/* Estilos base del documento o estado del cuerpo */
body.light-theme .btn_principal {
  background: var(--primary, rgba(255, 255, 255, 0.6));
  border-color: var(--card-border, rgba(0, 0, 0, 0.2));
  color: #fff;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .btn_principal:hover {
  background: var(--primary-hover, rgba(255, 255, 255, 0.8));
  border-color: var(--primary);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .user-details {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .detail-value {
  color: #0f172a;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-item {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-item-header {
  color: #0f172a;
}

body.light-theme .history-item-placeholder,
/* Estilos base del documento o estado del cuerpo */
body.light-theme .history-item-empty {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
  THEME SWITCH (TOP RIGHT)
   ========================================================================== */
/* Contenedor o bloque principal */
.contenedor_temas {
  position: absolute;
  top: 60px;
  right: 24px;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* Estilo para .theme-switch */
.theme-switch {
  display: inline-block;
  width: 66px;
  height: 32px;
  position: relative;
}

/* Estilo para .theme-switch input */
.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* Estilo para .theme-slider */
.theme-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.4s;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Estilo para .theme-slider-circle */
.theme-slider-circle {
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Estilo para .theme-icons */
.theme-icons {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 9px;
  z-index: 3;
  pointer-events: none;
}

.icon-sun-switch,
/* Estilo para .icon-moon-switch */
.icon-moon-switch {
  width: 14px;
  height: 14px;
  transition: 0.4s;
}

/* Modo oscuro (Luna activa, círculo a la derecha) */
body:not(.light-theme) .theme-slider-circle {
  transform: translateX(34px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Estilos base del documento o estado del cuerpo */
body:not(.light-theme) .icon-sun-switch {
  color: #6b7280;
}

/* Estilos base del documento o estado del cuerpo */
body:not(.light-theme) .icon-moon-switch {
  color: #e2e8f0;
}

/* Modo claro (Sol activo, círculo a la izquierda) */
body.light-theme .theme-slider {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .theme-slider-circle {
  transform: translateX(0);
  background-color: #fff;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .icon-sun-switch {
  color: #d97706;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .icon-moon-switch {
  color: #9ca3af;
}

/* Fix para botón secundario (Cerrar Sesión) en index.html modo claro */
body.light-theme .btn-secondary {
  color: #1e293b;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.05);
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

/* Estilos del boton o accion */
.btn-close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
}

/* Estilos del boton o accion */
.btn-close-modal:hover {
  color: #fff;
}

/* Estilos base del documento o estado del cuerpo */
body.light-theme .btn-close-modal:hover {
color: #000;
}

/* Evitar que las reglas globales de text-transform (como en rtn.css) fuercen mayúsculas en el login */
#txt_email {
  text-transform: lowercase !important;
}

/* Estilo para #txt_password */
#txt_password {
  text-transform: none !important;
}

/* ==========================================================================
   BRIDGE STATUS BADGE
   ========================================================================== */

.wrapper_status_bridge {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.badge_bridge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  user-select: none;
}

/* Punto indicador pulsante */
.badge_punto {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Estado: verificando --- */
.badge_estado_comprobando {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.badge_estado_comprobando .badge_punto {
  background: #94a3b8;
  animation: bridge-pulse-gray 1.4s ease-in-out infinite;
}

/* --- Estado: en línea (verde) --- */
.badge_estado_en_linea {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.badge_estado_en_linea .badge_punto {
  background: #22c55e;
  animation: bridge-pulse-green 1.6s ease-in-out infinite;
}

/* --- Estado: fuera de línea (rojo) --- */
.badge_estado_desconectado {
  background: rgba(239, 68, 68, 0.13);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.badge_estado_desconectado .badge_punto {
  background: #ef4444;
}

/* Animaciones del punto */
@keyframes bridge-pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}
@keyframes bridge-pulse-gray {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Light theme */
body.light-theme .badge_estado_en_linea {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
body.light-theme .badge_estado_desconectado {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}
body.light-theme .badge_estado_comprobando {
  color: #64748b;
}

/* Session kicked modal */
.overlay_calc {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.overlay_calc.oculto {
  display: none;
}
.kicked-overlay {
  z-index: 99999;
}
.modal_calc {
  background: #1e1b2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  color: #fff;
  max-width: 400px;
  width: 90%;
}
body.light-theme .modal_calc {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #1e293b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.kicked-modal-box {
  text-align: center;
  padding: 2rem;
}
.kicked-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.kicked-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.kicked-desc {
  margin-bottom: 1.5rem;
  color: #94a3b8;
}
body.light-theme .kicked-desc {
  color: #64748b;
}
.kicked-btn-group {
  display: flex;
  justify-content: center;
}
.kicked-btn {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.kicked-btn:hover {
  opacity: 0.9;
}

