/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

button, input, select, textarea { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  /* Backgrounds & Structure */
  --dark: #0f0f0f;
  --card: rgba(20, 24, 33, 0.4);
  --border: #2d2d2d;
  --gray: #333333;

  /* Text Colors */
  --txt: #000000;
  --txt-light: #ffffff;

  /* Status Colors - Versiones apagadas para interfaz */
  --primary: #ffffff;
  --secondary: #8a8a8a;
  --success: #22c55e;
  --success-muted: #16a34a;
  --success-accent: #00ff41;
  --danger: #ef4444;
  --danger-muted: #dc2626;
  --warning: #f59e0b;
  --warning-muted: #d97706;
  --info: #3b82f6;
  --neon: #00ff00;

  /* Medal Colors */
  --gold: #f59e0b;
  --silver: #a8a8a8;
  --bronze: #c96d3a;
}

/* ===== BASE ===== */
html, body { height: 100%; }

body {
  background-color: #080c11; /* base más oscura */
  background-image:
    /* viñeta en bordes */
    radial-gradient(100% 130% at 50% 50%,
      rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%),
    /* acento teal arriba-derecha */
    radial-gradient(60% 60% at 78% 26%,
      rgba(26,188,156,.12) 0%, rgba(26,188,156,0) 60%),
    /* acento azul abajo-izquierda */
    radial-gradient(55% 55% at 25% 75%,
      rgba(64,156,255,.08) 0%, rgba(64,156,255,0) 60%);
  background-blend-mode: soft-light, normal, normal;
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-attachment: fixed;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar { width: 8px; height: 8px; }

::-webkit-scrollbar-track { background: var(--card); }

::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 4px; }

::-webkit-scrollbar-thumb:hover { background: var(--success); }

/* ===== MAIN ===== */
main {
  flex: 1;
  padding-top: 80px!important; /* Espacio para el header fijo */
}

/* ===== 1. CONTAINER ===== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: clamp(1rem, 3vw, 1.5rem); }

/* ===== 2. SECTION ===== */
.section { margin-bottom: clamp(1.5rem, 4vw, 2rem); }

.section-title { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 1rem; }

/* ===== 3. GRID ===== */
.grid { display: grid; gap: clamp(0.75rem, 2vw, 1rem); }

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }
.grid-auto-flex { grid-template-columns: auto 1fr; }
.grid-auto-flex-auto { grid-template-columns: auto 1fr auto; }
.grid-3-equal { grid-template-columns: repeat(3, 1fr); }
.grid-fixed-flex-auto { grid-template-columns: 280px 1fr auto; }

/* ===== 4. CARD ===== */
.card {
  background:
    radial-gradient(ellipse at top, rgba(34, 197, 94, 0.02), transparent 50%),
    var(--card);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 8px;
  padding: clamp(0rem, 0.75vw, 1.5rem);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow:
    0 8px 16px -2px rgba(0, 0, 0, 0.4),
    0 4px 8px -2px rgba(0, 0, 0, 0.3),
    0 0 20px -5px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.card-title { font-size: clamp(0.75rem, 2vw, 0.85rem); color: var(--secondary); margin-bottom: 0.5rem; font-weight: bold; }

.card-value {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.card-subtitle { font-size: clamp(0.75rem, 2vw, 0.85rem); color: var(--secondary); margin-top: 0.5rem; }

/* ===== 5. BOTONES ===== */
.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: 1px solid;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.8125rem;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-success {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.3);
}
.btn-success:hover {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.12));
  border-color: rgba(34, 197, 94, 0.5);
}

.btn-danger {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.3);
}
.btn-danger:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.18), rgba(239, 68, 68, 0.12));
  border-color: rgba(239, 68, 68, 0.5);
}

.btn-warning {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.3);
}
.btn-warning:hover {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.12));
  border-color: rgba(245, 158, 11, 0.5);
}

.btn-info {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  color: var(--info);
  border-color: rgba(59, 130, 246, 0.3);
}
.btn-info:hover {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.12));
  border-color: rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(138, 138, 138, 0.1), rgba(138, 138, 138, 0.05));
  color: var(--secondary);
  border-color: rgba(138, 138, 138, 0.3);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(138, 138, 138, 0.18), rgba(138, 138, 138, 0.12));
  border-color: rgba(138, 138, 138, 0.5);
}

/* ===== TABS ===== */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tab {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  white-space: nowrap;
  position: relative;
}

.tab.active {
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--success);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.12);
}

.tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.2s ease;
}

.badge-primary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--primary);
}

.badge-secondary {
  background: rgba(138, 138, 138, 0.1);
  border-color: rgba(138, 138, 138, 0.4);
  color: var(--secondary);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--success);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
  color: var(--danger);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--warning);
}

.badge-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--info);
}

.badge-gray {
  background: rgba(51, 51, 51, 0.1);
  border-color: rgba(51, 51, 51, 0.4);
  color: var(--gray);
}

/* ===== TABLES ===== */
table {
  font-variant-numeric: tabular-nums;
  border-collapse: collapse;
}

td, th {
  font-variant-numeric: tabular-nums;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table th {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.table td {
  font-size: 0.85rem;
}

/* Tabla compacta - texto más pequeño */
.table-compact th {
  font-size: 0.65rem;
  padding: 0.5rem 0.4rem;
}

.table-compact td {
  font-size: 0.65rem;
  padding: 0.4rem 0.4rem;
}

.table tbody tr {
  transition: background 0.15s ease;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

/* ===== LISTS ===== */
.card ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.card ul li {
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.card ul li:last-child {
  margin-bottom: 0;
}

/* ===== UTILIDADES DE COLOR ===== */
.text-neon { color: var(--neon); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }
.text-txt { color: var(--txt); }
.text-txt-light { color: var(--txt-light); }

/* Medal Text colors */
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-bronze { color: var(--bronze); }

.bg-dark { background: var(--dark); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-success { background: var(--success); }
.bg-danger { background: var(--danger); }
.bg-warning { background: var(--warning); }
.bg-info { background: var(--info); }

/* Medal Backgrounds */
.bg-gold { background: var(--gold); }
.bg-silver { background: var(--silver); }
.bg-bronze { background: var(--bronze); }

/* Backgrounds con opacidad (usando color-mix) */
.bg-success-light { background: color-mix(in srgb, var(--success) 5%, transparent); }
.bg-success-lighter { background: color-mix(in srgb, var(--success) 8%, transparent); }
.bg-success-lightest { background: color-mix(in srgb, var(--success) 2%, transparent); }
.bg-danger-light { background: color-mix(in srgb, var(--danger) 5%, transparent); }
.bg-warning-light { background: color-mix(in srgb, var(--warning) 5%, transparent); }
.bg-warning-lighter { background: color-mix(in srgb, var(--warning) 8%, transparent); }
.bg-white-light { background: color-mix(in srgb, var(--primary) 2%, transparent); }
.bg-border-light { background: color-mix(in srgb, var(--border) 50%, transparent); }

/* Medal Backgrounds */
.bg-gold-light { background: color-mix(in srgb, var(--gold) 5%, transparent); }
.bg-silver-light { background: color-mix(in srgb, var(--silver) 5%, transparent); }
.bg-bronze-light { background: color-mix(in srgb, var(--bronze) 5%, transparent); }

/* Border colors */
.border-success { border-color: var(--success); }
.border-danger { border-color: var(--danger); }
.border-warning { border-color: var(--warning); }
.border-info { border-color: var(--info); }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }
.border-default { border-color: var(--border); }
.border-neon { border-color: var(--neon); }

/* Medal Border colors */
.border-gold { border-color: var(--gold); }
.border-silver { border-color: var(--silver); }
.border-bronze { border-color: var(--bronze); }

/* Border Width */
.border-2 { border-width: 2px; }

/* Border Style */
.border-solid { border-style: solid; }

/* Border Bottom */
.border-b { border-bottom: 1px solid var(--border); }

/* Border Radius */
.rounded-full { border-radius: 50%; }
.rounded-lg { border-radius: 8px; }
.rounded { border-radius: 6px; }
.rounded-sm { border-radius: 4px; }

/* ===== ICONOS SVG ===== */
svg {
  display: inline-block;
  vertical-align: middle;
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-md {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-xl {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-2xl {
  width: 2rem;
  height: 2rem;
}

.icon-3xl {
  width: 3rem;
  height: 3rem;
}

/* Colores de iconos - Adaptados a variables del proyecto */
.icon-primary { color: var(--primary); }
.icon-secondary { color: var(--secondary); }
.icon-success { color: var(--success); }
.icon-danger { color: var(--danger); }
.icon-warning { color: var(--warning); }
.icon-info { color: var(--info); }

/* ===== UTILIDADES DE ALINEACIÓN ===== */

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-end { display: flex; justify-content: flex-end; align-items: center; }
.flex-start { display: flex; justify-content: flex-start; align-items: center; }
.flex-column { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Align Items */
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

/* Text Align */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Transform */
.text-uppercase { text-transform: uppercase; }

/* Margin */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }
.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }


/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.pt-80 { padding-top: 80px; }
.pt-130 { padding-top: 130px; }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-100 { width: 100px; }
.w-180 { width: 180px; }

/* Max Width (responsive con clamp) */
.max-w-content { max-width: clamp(300px, 90%, 800px); }

/* Height */
.h-2 { height: 2px; }
.h-100 { height: 100px; }
.h-180 { height: 180px; }
.h-220 { height: 220px; }
.h-300 { height: 300px; }

/* Overflow */
.overflow-x-auto { overflow-x: auto; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }

/* Transform */
.transform-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ===== UTILIDADES DE TAMAÑO DE TEXTO ===== */
.text-xxs { font-size: 0.65rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.85rem; }
.text-md { font-size: 0.9rem; }
.text-lg { font-size: 1.2rem; font-weight: 600; }

/* Font Weight */
.font-bold { font-weight: 700; }

/* ===== AVATARES CIRCULARES ===== */
.avatar { border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.avatar-sm { width: 24px; height: 24px; }

.avatar-md { width: 30px; height: 30px; }

.avatar-lg { width: 40px; height: 40px; }

/* ===== BARRAS DE PROGRESO ZSCORE ===== */
.zscore-progress {
    width: 0%;
    transition: width 0.6s ease-out;
}

/* ===== IMÁGENES ===== */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }

/* ===== CURSOR ===== */
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-help { cursor: help; display: inline-flex; align-items: center; }

/* ===== TOOLTIPS ===== */
/* Ocultar iconos cuando modo ayuda está desactivado */
body:not(.help-mode-active) .cursor-help {
  display: none;
}

.cursor-help .icon {
  opacity: 0.6;
  color: var(--secondary);
  transition: all 0.2s ease;
}

.cursor-help:hover .icon {
  opacity: 1;
  color: #39FF14;
}

/* Ocultar tooltips inline (ya no se usan, ahora usamos uno global) */
.cursor-help .tooltip {
  display: none !important;
}

/* Tooltip global único (fuera del flujo) */
#tooltip-global {
  position: fixed;
  background: rgba(20, 24, 33, 0.98);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 6px;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--primary);
  white-space: normal;
  width: 240px;
  max-width: 85vw;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

#tooltip-global.show {
  opacity: 1;
  visibility: visible;
}

/* Flecha del tooltip */
#tooltip-global::after {
  content: '';
  position: absolute;
  border: 6px solid transparent;
}

#tooltip-global.pos-top::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: rgba(57, 255, 20, 0.2);
}

#tooltip-global.pos-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: rgba(57, 255, 20, 0.2);
}

#tooltip-global.pos-left::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: rgba(57, 255, 20, 0.2);
}

#tooltip-global.pos-right::after {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: rgba(57, 255, 20, 0.2);
}

/* ===== WHITESPACE ===== */
.whitespace-nowrap { white-space: nowrap; }

/* ===== TEXT DECORATION ===== */
.text-underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* ===== LIST STYLE ===== */
.list-none { list-style: none; }
.list-styled {
  padding-left: 1.2rem;
  margin: 0;
}

/* ===== MARGIN AUTO ===== */
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== MARGIN ADICIONALES ===== */
.mr-05 { margin-right: 0.25rem; }
.mt-05 { margin-top: 0.15rem; }

/* ===== PADDING ADICIONALES ===== */
.p-075 { padding: 0.75rem; }
.px-05 { padding-left: 0.25rem; padding-right: 0.25rem; }
.py-05 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.pl-12 { padding-left: 1.2rem; }
.pl-125 { padding-left: 1.25rem; }

/* ===== MIN/MAX WIDTH ===== */
.min-w-20 { min-width: 20px; }
.min-w-30 { min-width: 30px; }
.min-w-80 { min-width: 80px; }

/* ===== MIN HEIGHT ===== */
.min-h-30 { min-height: 30px; }

/* ===== FLEX UTILITIES ===== */
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* ===== FONT SIZE ADICIONALES ===== */
.text-xl { font-size: 1.25rem; } /* 20px */
.text-2xl { font-size: 1.5rem; } /* 24px */

/* ===== POSITION UTILITIES ===== */
.absolute { position: absolute; }
.relative { position: relative; }
.left-0 { left: 0; }
.top-0 { top: 0; }

/* ===== INPUTS ===== */
.input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
}

.input-mono {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--warning);
  background: var(--dark);
  color: var(--warning);
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: monospace;
}

/* ===== BADGES EXTENDIDOS ===== */
.badge-circle {
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.badge-circle-sm {
  min-width: 20px;
}

/* ===== BUTTONS EXTENDIDOS ===== */
.btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem;
  font-size: 1rem;
}

/* ===== CODE BLOCKS ===== */
.code-block {
  background: var(--dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.25rem;
}

/* ===== CUSTOM BULLETS ===== */
.list-bullet {
  padding-left: 1.25rem;
  position: relative;
}

.list-bullet::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--danger);
}

/* ===== CHART CONTAINERS ===== */
.chart-container-lg {
  width: 100%;
  height: 350px;
}

.chart-container-md {
  width: 100%;
  height: 250px;
}

.chart-container-sm {
  width: 100%;
  height: 200px;
}

/* ===== SCROLLABLE CONTAINERS ===== */
.scrollable-list {
  max-height: 280px;
  overflow-y: auto;
}

/* ===== TOOLTIP COLORS (para tooltips dinámicos de ECharts) ===== */
.tooltip-success {
  color: var(--success);
}

.tooltip-danger {
  color: var(--danger);
}

.tooltip-warning {
  color: var(--warning);
}