
   /* ==========================================================
   ESTILOS DE USUARIOS
   ========================================================== */

[class^="estilo-usuario-"] {
  font-weight: 600 !important;
  text-align: center !important;
  font-size: 11px !important;
  color: #3a3939a8 !important;
  background-color: #424242;
  letter-spacing: 0.3px !important;
  user-select: none !important;
  overflow: hidden !important;
}

/* --- Colores definidos --- */
.estilo-usuario-001 { background-color: #2e7d32 !important; color: #ffffff !important; }
.estilo-usuario-002 { background-color: #1976d2 !important; color: #ffffff !important; }
.estilo-usuario-003 { background-color: #ffc107 !important; color: #4d4d4d !important; }
.estilo-usuario-004 { background-color: #7b1fa2 !important; color: #ffffff !important; }
.estilo-usuario-005 { background-color: #546e7a !important; color: #ffffff !important; }
.estilo-usuario-006 { background-color: #9e9e9e !important; color: #333333 !important; }
.estilo-usuario-007 { background-color: #009688 !important; color: #ffffff !important; }
.estilo-usuario-008 { background-color: #0288d1 !important; color: #ffffff !important; }
.estilo-usuario-009 { background-color: #26a69a !important; color: #ffffff !important; }
.estilo-usuario-010 { background-color: #8e24aa !important; color: #ffffff !important; }
.estilo-usuario-011 { background-color: #c2185b !important; color: #ffffff !important; }
.estilo-usuario-012 { background-color: #ef6c00 !important; color: #ffffff !important; }
.estilo-usuario-013 { background-color: #455a64 !important; color: #ffffff !important; }
.estilo-usuario-014 { background-color: #43a047 !important; color: #ffffff !important; }
.estilo-usuario-015 { background-color: #3949ab !important; color: #ffffff !important; }






/* ==========================================================
   FIN DE ESTILOS DE USUARIOS
   ========================================================== */













/* ==========================================================
   ESTRUCTURA GENERAL
   ========================================================== */

/* --- GRID PRINCIPAL --- */
.grid {
  display: grid;
  grid-template-columns: 800px 1fr;
  grid-template-rows: auto 1fr;
  height: calc(100vh - 60px);
  width: 100%;
  overflow: hidden;
  --cell-height: 22px; /* Variable para el alto de celdas */
  --cell-width: 20px;  /* Variable para el ancho de celdas */
}

/* --- Cuadrantes base --- */
.q1, .q2, .q3, .q4 {
  border: 1px solid #aaa;
  box-sizing: border-box;
}

.q1 { background: #ffffff; grid-row: 1; grid-column: 1; }
.q2 { background: #ffffff; grid-row: 1; grid-column: 2; overflow-x: auto; white-space: nowrap; margin-left: 4px; }
.q3 { background: #fff3cd; grid-row: 2; grid-column: 1; overflow-y: auto }
.q4 { background: #d4edda; grid-row: 2; grid-column: 2; overflow: auto; white-space: nowrap; margin-left: 4px; }

/* --- Divisor entre Q1 y Q2 --- */
.resizer {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 5px;
  cursor: col-resize;
  background: #ffffff;
  z-index: 10;
}

/* ==========================================================
   TABLAS GENERALES
   ========================================================== */

.q1 table,
.q3 table,
.q4 table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}


.q2 th,  .q1 th,
.q3 th, .q3 td,
.q4 th, .q4 td {
  border: 1px solid #aaaaaa3b;
  padding: 0 2px;
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  font-size: 13px; /* Ajustado de 13px a 12px para consistencia */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  box-sizing: border-box;
}


 .q2 td {
  border: 1px solid #55555571;
  padding: 0 2px;
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  font-size: 13px; /* Ajustado de 13px a 12px para consistencia */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  box-sizing: border-box;
}


 .q1 td, {
  border: 1px solid #aaa;
  padding: 0 2px;
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  font-size: 13px; /* Ajustado de 13px a 12px para consistencia */
  white-space: nowrap;
 
  text-overflow: ellipsis;
  text-align: left;
  box-sizing: border-box;
}
/* --- Forzar alturas en Q3 y Q4 --- */
.q3 table.tabla-tareas tr,
.q4 table.tabla-q4 tr {
  height: var(--cell-height); /* Usar variable */
  min-height: var(--cell-height); /* Usar variable */
}

.q4 table.tabla-q4 td:empty::after {
  content: "\200B"; /* previene colapso */
}

/* --- Inputs dentro de Q4 --- */
.q4 input {
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  font-size: 13px;
  padding: 0 2px;
  box-sizing: border-box;
}

/* --- Estilo para input flotante --- */
.floating-input {
  position: fixed;
  width: 80px;
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  font-size: 13px; /* Coincide con celdas */
  padding: 0 2px; /* Coincide con celdas */
  box-sizing: border-box;
  z-index: 999;
}

/* ==========================================================
   ANCHOS DE COLUMNAS
   ========================================================== */

.col-proy  { width: 60px;  }
.col-seguimiento { width: 30px; }
.col-id    { width: 50px; }
.col-resp  { width: 50px; }
.col-hp, .col-hr { width: 30px; }
.col-est   { width: 70px; }
.col-av    { width: 30px; }
.col-fecha_inicio,
.col-fecha_fin { width: 75px; }
.col-tarea { width: auto; min-width: 150px; }









/* ==========================================================
   ESTILOS DE ESTATUS (TAREAS)
   ========================================================== */

[class^="estilo-estatus-"] {
  font-weight: 600 !important;
  text-align: center !important;
  font-size: 10px !important;
  color: #3f3f3f !important;
  letter-spacing: 0.3px !important;
  user-select: none !important;
}

/* --- Etapas --- */
.estilo-estatus-PENDIENTE   { background-color: #9e9e9e !important; color: #fff !important; }
.estilo-estatus-PROGRAMADA  { background-color: #607d8b !important; color: #fff !important; }
.estilo-estatus-ASIGNADA    { background-color: #546e7a !important; color: #fff !important; }
.estilo-estatus-TERMINADA   { background-color: #0549a1 !important; color: #a6d7ff !important; }
.estilo-estatus-ACTIVA      { background-color: #2e7d32 !important; color: #fff !important; }
.estilo-estatus-PAUSA       { background-color: #ffc107 !important; color: #000 !important; }
.estilo-estatus-URGE        { background-color: #e53935 !important; color: #fff !important; }
.estilo-estatus-BLOQUEADA   { background-color: #8e24aa !important; color: #fff !important; }
.estilo-estatus-ATRASO      { background-color: #d32f2f !important; color: #fff !important; }
.estilo-estatus-REVISION    { background-color: #0b62d2 !important; color: #fff !important; }
.estilo-estatus-APROBADA    { background-color: #009688 !important; color: #fff !important; }
.estilo-estatus-ENCURSO     { background-color: #2e7d32 !important; color: #fff !important; }
.estilo-estatus-CANCELADA   { background-color: #455a64 !important; color: #fff !important; }
.estilo-estatus-RECHAZADA   { background-color: #b71c1c !important; color: #fff !important; }
.estilo-estatus-SIGUE       { background-color: #c38c0a !important; color: #fff !important; }










/* ==========================================================
   ESTILOS COMUNES / GENERALES
   ========================================================== */




.no-select { user-select: none !important; }

.row-activa {
  background-color: #cce5ff;
}



/* --- Scroll oculto en Q2 y Q3 --- */
.q2::-webkit-scrollbar,
.q3::-webkit-scrollbar { display: none; }

.q2, .q3 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- Días laborales y fines de semana --- */
.col-finsemana { background-color: #f0f0f0; }

.col-laboral { background-color: #daf3e1; }
.col-laboral-1 { background-color: #e2f1e7; }

/* --- Filas zebra en Q3 --- */
.tabla-tareas tr:nth-child(even) td { background-color: #eaf3fc; }
.tabla-tareas tr:nth-child(odd) td  { background-color: #d9ecfa; }


.celda-activa {
  outline: 2px solid #007bff !important;
  outline-offset: -2px;
  background-color: rgb(40, 121, 196);
  
}  

/* --- Row activa sobrescribiendo zebra --- */
.row-activa td {
  background-color: transparent ;
      background-color: #80cfff1f !important;
  color: #000 !important;
}

.q4 .row-activa td
{
  color: #000000 !important;}




/* ==========================================================
   ESTADOS DE CELDAS
   ========================================================== */


.q1 .tareas-th
{
  background-color: #06396f;
  color: #FFF;
}
.hd_seguimiento .bi {
  color: white !important;
  background: transparent !important;
}

.celda-ocupada {
  background-color: #86bff8  !important;
  color: #165896; 
}

table.tabla-q4 .row-activa td.celda-x {
  background-color: #f7b7b7 !important;
    box-shadow: inset 0 -4px 0 0 #9b021c !important;
  color: #fff;
}

table.tabla-q4 tr td.celda-x {
  background-color: #f7b7b7 !important;
  color: #660000 !important;
    box-shadow: inset 0 -4px 0 0 #9b021c !important;
  font-weight: bold;
}

.row-activa td.celda-ocupada {
  background-color: #86bff8  !important;
  color: #165896;
}



.celda-pasada {
  background-color: #39FF1470;
  color: #000;
  opacity: 0.8;
  transition: background-color 0.3s ease;
}

.celda-activa.celda-pasada {
  background-color: #39FF14;
  border: 2px solid #000000;
}

/* ==========================================================
   Q1 – CABECERA
   ========================================================== */

.tareas-th th {
  font-weight: inherit !important;
  font-size: 12px !important;
}

.q1 table { table-layout: fixed; }

.q1 th.hd_proy        { width: 50px; }
.q1 th.hd_seguimiento { width: 40px; }
.q1 th.hd_id          { width: 50px; }
.q1 th.hd_tarea       { width: auto; text-align: left; }
.q1 th.hd_resp        { width: 50px; }
.q1 th.hd_hp,
.q1 th.hd_hr          { width: 40px; }
.q1 th.hd_estatus     { width: 80px; }
.q1 th.hd_avance      { width: 50px; }
.q1 th.hd_fecha_inicio,
.q1 th.hd_fecha_fin   { width: 80px; }



.q1 td.menu_ops button {
  font-size: 12px;
  padding: 6px 10px 6px 10px;
  line-height: 1;
}

/* ==========================================================
   Q2 – CABECERA DE DÍAS
   ========================================================== */

.q2 table.tabla-dias {
  border-collapse: collapse;
  table-layout: fixed;
  width: max-content;
}

.q2 th, .q2 td {
  
}

/* ==========================================================
   Q3 – TABLA DE TAREAS
   ========================================================== */

.q3 table.tabla-tareas {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

/* Flecha Seguimiento */
.celda-seguimiento {
  text-align: center;
  width: 25px;
  cursor: pointer;
  color: #777;
  user-select: none;
  transition: color 0.2s, background-color 0.2s;
}

.celda-seguimiento:hover {
  color: #000;
  background-color: #f3f3f3;
}

/* ==========================================================
   Q4 – TABLA DE DÍAS / BLOQUES DE SEGUIMIENTO
   ========================================================== */

.q4 {
  position: relative;
  width: 100%;
  min-height: 250px;
}

.q4 table.tabla-q4, q2 table.tabla-semanas {
  border-collapse: collapse;
  table-layout: fixed;
  
}

.q4 th, .q4 td {
  width: var(--cell-width); /* Usar variable */
  max-width: var(--cell-width); /* Usar variable */
  min-width: var(--cell-width); /* Usar variable */
  height: var(--cell-height); /* Usar variable */
  line-height: var(--cell-height); /* Usar variable */
  border: 1px solid #aaaaaa3b;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}

/* --- Panel de Seguimiento superpuesto --- */
.q4-seguimiento {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  animation: fadeIn 0.25s ease-in-out;
  z-index: 10;
}

.seguimiento-header { position: relative; }

.q4-seguimiento h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  padding-right: 2rem;
}

.q4-seguimiento .btn-cerrar {
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}
.q4-seguimiento .btn-cerrar:hover { color: #000; }

.seguimiento-contenido {
  flex: 1;
  padding-top: 0.5rem;
  font-size: 13px;
  color: #555;
}

.q4-seguimiento-full {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-left: 2px solid #ccc;
  overflow-y: auto;
  padding: 1rem;
}

/* --- Panel de Seguimiento (solo en la parte derecha) --- */
.q4-seguimiento-lateral {
  grid-row: 1 / span 2;     /* ocupa Q2 + Q4 verticalmente */
  grid-column: 2;            /* se queda SOLO en la columna derecha */
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border-left: 2px solid #ccc;
  overflow-y: auto;
  padding: 1rem;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 5;                /* por debajo del resizer */
}

/* ==========================================================
   ANIMACIONES
   ========================================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   MODOS DE INTERACCIÓN / DRAG / LECTURA
   ========================================================== */

/* --- Drag & Drop Q3 --- */
.dragging { opacity: 0.4; }
.drag-cell { cursor: grab; }
.drag-cell:active { cursor: grabbing; }

.row-dragging {
  outline: 2px solid #007bff;
  outline-offset: -2px;
  background-color: #e7f1ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease, outline 0.2s ease, box-shadow 0.2s ease;
}

.drop-above { border-top: 3px solid #007bff !important; }
.drop-below { border-bottom: 3px solid #007bff !important; }
.drop-above, .drop-below { transition: border-color 0.15s ease; }
.drop-above.ready, .drop-below.ready { border-color: #28a745 !important; }

.row-fade-out {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.15s ease-out, transform 0.15s ease-out, border-color 0.15s ease-out;
  border-color: #007bff !important;
}
.row-fade-in {
  opacity: 0;
  transform: translateY(-5px);
  border-color: #007bff !important;
  animation: fadeInSlide 0.2s ease-out forwards;
}
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(-5px); border-color: #007bff; }
  to { opacity: 1; transform: translateY(0); border-color: inherit; }
}

/* --- Modo Lectura --- */
.modo-lectura {
  opacity: 0.9;
  filter: grayscale(15%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

/* Desactivar clicks en Q4, pero mantener Q3 activo */
.modo-lectura .q4 > :not(.q4-seguimiento) {
  pointer-events: none;
}

/* Q3 debe seguir recibiendo clics */
.modo-lectura .q3 {
  pointer-events: auto !important;
}



/* --- Indicador de modo --- */
.grid.main_gridXXX::after {
  content: "Modo edición";
  position: absolute;
  top: 0px;              /* ← posición fija */
  right: 8px;
  font-size: 13px;
  color: #666;
  background: #a3e2ff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 6px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* --- Cuando está en modo lectura --- */
.modo-lectura.grid.main_gridXXX::after {
  content: "Modo lectura";
  opacity: 1;
}

/* --- Cuando está en modo edición --- */
.grid.main_gridXXX:not(.modo-lectura)::after {
  content: "Modo edición";
  opacity: 1;
}


/* --- Bloqueo de grid --- */
.grid-bloqueado {
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}


/* ==========================================================
   EDITOR HTML / TOOLBAR
   ========================================================== */

.editor-html {
  border: 1px solid #ccc;
  border-radius: 8px;
  min-height: 120px;
  padding: 0.5rem;
  background: #fff;
  overflow-y: auto;
}
.editor-html:focus { outline: 2px solid #007bff33; }

.editor-toolbar .btn { padding: 0.25rem 0.5rem; }
.editor-toolbar i { font-size: 1rem; }

.q4-seguimiento img {
  max-width: 100%;
  height: auto;
  border: 3px solid #a3c9ff; /* azul clarito */
  border-radius: 4px;
  margin: 0.5rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* --- Contenido de los bloques dentro del seguimiento --- */
.q4-seguimiento .bloque-seguimiento {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow-x: hidden;
}

/* --- Además, asegura que los párrafos y textos se ajusten --- */
.q4-seguimiento .bloque-seguimiento p,
.q4-seguimiento .bloque-seguimiento div,
.q4-seguimiento .bloque-seguimiento span {
  white-space: normal !important;
  word-break: break-word !important;
}

.resizer.disabled {
  pointer-events: none !important;
  opacity: 0.5; /* opcional: lo hace ver inactivo */
  cursor: default !important;
}

/* --- Panel principal del seguimiento --- */
.q4-seguimiento {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  background-color: #FFF;
  xpadding-top: 3.5rem; /* deja espacio para el header fijo */
}

/* --- Encabezado fijo dentro del seguimiento --- */
.q4-seguimiento .seguimiento-header {
  position: sticky;
  top: -15px;
  z-index: 20;
  background: #f8f9fa;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Ajustes visuales del header --- */
.q4-seguimiento .seguimiento-header h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.q4-seguimiento .seguimiento-header .btn-cerrar {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.q4-seguimiento .seguimiento-header .btn-cerrar:hover {
  color: #000;
}






.loader{
    display: block;
    position: relative;
    height: 10px;
    width: 140px;
    background-image: 
    linear-gradient(#FFF 20px, transparent 0), 
    linear-gradient(#FFF 20px, transparent 0), 
    linear-gradient(#FFF 20px, transparent 0), 
    linear-gradient(#FFF 20px, transparent 0);
    background-repeat: no-repeat;
    background-size: 10px auto;
    background-position: 0 0, 40px 0, 80px 0, 120px 0;
    animation: pgfill 1s linear infinite;
  }
  
  @keyframes pgfill {
    0% {   background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0); }
    25% {   background-image: linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0); }
    50% {   background-image: linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0); }
    75% {   background-image: linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0); }
    100% {   background-image: linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0), linear-gradient(#0088a0 20px, transparent 0); }
  }
  






/* ==========================================================
   ESTILOS ADICIONALES PARA CELDAS ESPECÍFICAS
   ========================================================== */  

.q1 .dropdown-menu {
  min-width: 180px;
  animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}



.font-size-12 {
  font-size: 12px !important;
}

.cursor-pointer
{
  cursor: pointer;
}







.panel-etiquetas {
  max-height: 120px;
  overflow-y: auto;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
}


.badge {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 20px;
  user-select: none;
  transition: all 0.2s;
}
.badge.cursor-pointer:hover {
  background-color: #e7f1ff;
  border-color: #9ac3ff;
}

.modal-content {
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}





/* ==========================================================
   ESTILOS PARA TOASTS
   ========================================================== */

   .toast-slide {
  transform: translateX(120%);
  opacity: 0;
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Efecto de salida opcional (si quieres fade-out slide) */
.toast-slide.fade-out {
  animation: slideOut 0.4s ease forwards;
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}
/* ==========================================================
   FIN DE ESTILOS PARA TOASTS 
   ========================================================== */





.q4 tr td.estilo_en_rango {
  background-color: #86bff8   !important; /* Amarillo */
  color: #313131 !important; /* Negro */
}


.q4 tr td.estilo_en_rango {
  background-color: #86bff8   !important;
  color: #313131 !important;
  box-shadow: inset 0 -4px 0 0 #022b9b  !important;

}



.txt10 {
  font-size: 10px !important;
}

.txt11 {
  font-size: 11px !important; 
}


/* estilos generales */

tr.text-center td, tr.text-center th {
  text-align: center;
}

.col-azulsec-0 {
  background-color: #86bff8  !important;
}

.col-azulsec-1 {
  background-color: #a9d2fc   !important;
} 


.q4 .tabla-q4 colgroup col, .q2 .tabla-semanas tr.dia-mes td, .q2 .tabla-semanas tr.num-semana td{
  width: 55px;
  min-width: 55px;
  max-width: 55px;
}





/**********************/

:root {
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
}

/* Utilidades estilo Bootstrap para texto */
.text-gray-100 { color: var(--bs-gray-100) !important; }
.text-gray-200 { color: var(--bs-gray-200) !important; }
.text-gray-300 { color: var(--bs-gray-300) !important; }
.text-gray-400 { color: var(--bs-gray-400) !important; }
.text-gray-500 { color: var(--bs-gray-500) !important; }
.text-gray-600 { color: var(--bs-gray-600) !important; }
.text-gray-700 { color: var(--bs-gray-700) !important; }
.text-gray-800 { color: var(--bs-gray-800) !important; }
.text-gray-900 { color: var(--bs-gray-900) !important; }


.fs-7 {
  font-size: 0.875rem !important;
}

.fs-8 {
  font-size: 0.6rem !important;
}

