/* assets/css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-orange: #F39200;
  --primary-orange-hover: #D88100;
  --primary-orange-light: rgba(243, 146, 0, 0.1);
  --bg-white: #FFFFFF;
  --bg-gray-light: #F4F4F4;
  --bg-gray-border: #E5E5E5;
  --text-dark: #1A1A1B;
  --text-gray: #666666;
  --text-gray-light: #999999;
  
  --font-base: 'Outfit', sans-serif;
  --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 10px 25px rgba(243, 146, 0, 0.2);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-base);
  background-color: var(--bg-gray-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout General */
header {
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--bg-gray-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-subtle);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.campaign-tag {
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(243, 146, 0, 0.2);
  transition: var(--transition-smooth);
}

.campaign-tag[onclick] {
  cursor: pointer;
}

.campaign-tag[onclick]:hover {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(243, 146, 0, 0.25);
  transform: translateY(-1px);
  border-color: var(--primary-orange);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hidden {
  display: none !important;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Pantalla 1: Landing Page */
.hero-section {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.5s ease-out;
}

.hero-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-section p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.estamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: stretch; /* Estira todas las tarjetas para medir lo mismo en la fila */
}

.estamento-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  text-align: left;
  height: 420px; /* Alto estricto y unificado para todas las tarjetas */
}

.estamento-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-medium);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 155px; /* Ajuste milimétrico de la cabecera */
  overflow: hidden;
  background-color: var(--bg-gray-light);
  flex-shrink: 0; /* Evita que la imagen cambie de tamaño */
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.estamento-card:hover .card-image-wrapper img {
  transform: scale(1.06);
}

.card-badge-modality {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(26, 26, 27, 0.85);
  color: var(--bg-white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-badge-modality::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-orange);
}

.card-body-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Ocupa el espacio restante */
  justify-content: space-between; /* Distribuye espacio empujando el botón abajo */
}

.card-badge-container {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.badge-custom-gray {
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.badge-custom-orange {
  background-color: #FFF3E0;
  color: #E65100;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(230, 81, 0, 0.15);
}

.card-body-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.card-body-content p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  height: 64px; /* Alto fijo exacto para uniformidad de texto */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; /* Corta texto sobrante si lo hubiere */
  flex-shrink: 0;
}

.btn-card-cta {
  width: 100%;
  background-color: var(--primary-orange);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(243, 146, 0, 0.1);
  margin-top: auto; /* Empuja el botón al fondo del contenedor flex */
}

.estamento-card:hover .btn-card-cta {
  background-color: var(--primary-orange-hover);
  box-shadow: var(--shadow-orange);
}


/* Pantalla 2: Puerta de Seguridad - Habeas Data */
.card-form-container {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-medium);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.input-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bg-gray-border);
  border-radius: 12px;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  outline: none;
}

.input-field:focus {
  border-color: var(--primary-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-orange-light);
}

.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%231A1A1B' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Checkbox Habeas Data */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-orange);
  cursor: pointer;
  margin-top: 2px;
  border: 2px solid var(--bg-gray-border);
  border-radius: 4px;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  cursor: pointer;
  user-select: none;
}

.checkbox-label a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Botones */
.btn-primary {
  width: 100%;
  background-color: var(--primary-orange);
  color: var(--bg-white);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  background-color: var(--text-gray-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-gray);
  border: 1px solid var(--bg-gray-border);
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary:hover {
  background-color: var(--bg-gray-light);
  color: var(--text-dark);
}

/* Pantalla 3: Interfaz de Encuesta Conversacional */
.survey-wrapper {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.survey-progress-container {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.survey-progress-bar-bg {
  flex-grow: 1;
  height: 8px;
  background-color: var(--bg-gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.survey-progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--primary-orange);
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  white-space: nowrap;
}

.survey-question-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.question-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.question-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

/* Escala Likert 1-5 */
.likert-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.likert-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.likert-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--bg-gray-border);
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-gray);
  transition: var(--transition-smooth);
  margin-bottom: 8px;
}

.likert-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-align: center;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.likert-option:hover .likert-button {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background-color: var(--primary-orange-light);
  transform: scale(1.08);
}

.likert-option.selected .likert-button {
  border-color: var(--primary-orange);
  background-color: var(--primary-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-orange);
}

.likert-option.selected .likert-label {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Control de Navegación */
.survey-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg-gray-border);
  padding-top: 1.5rem;
}

.keyboard-shortcut-hint {
  font-size: 0.8rem;
  color: var(--text-gray-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.kbd-key {
  background: var(--bg-gray-light);
  border: 1px solid var(--bg-gray-border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

/* Comentarios Finales */
.comments-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.comments-textarea {
  width: 100%;
  height: 150px;
  padding: 16px;
  border: 2px solid var(--bg-gray-border);
  border-radius: 12px;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  resize: none;
  margin-top: 1rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.comments-textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px var(--primary-orange-light);
}

/* Pantalla 4: Dashboard */
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 1rem;
}

.dashboard-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-gray-border);
  padding-bottom: 8px;
}

.participation-metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.participation-bar-bg {
  width: 100px;
  height: 6px;
  background-color: var(--bg-gray-light);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 10px;
  flex-grow: 1;
}

.participation-bar-fill {
  height: 100%;
  background-color: var(--primary-orange);
  border-radius: 3px;
}

.chart-wrapper {
  position: relative;
  height: 350px;
  width: 100%;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kpi-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.kpi-card span {
  font-size: 0.8rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.kpi-card strong {
  font-size: 1.75rem;
  color: var(--primary-orange);
  font-weight: 700;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.dashboard-table th {
  padding: 12px;
  border-bottom: 2px solid var(--bg-gray-border);
  color: var(--text-gray);
  font-weight: 600;
}

.dashboard-table td {
  padding: 12px;
  border-bottom: 1px solid var(--bg-gray-border);
  color: var(--text-dark);
}

.badge {
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-orange {
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
}

.badge-gray {
  background-color: #ECECEC;
  color: #555555;
}

/* Modales e Informes */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-gray-border);
  padding-bottom: 12px;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-gray);
}

.modal-body {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Responsividad */
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 1.85rem;
  }
  
  .card-form-container {
    padding: 2rem 1.5rem;
  }
  
  .survey-question-card {
    padding: 2.5rem 1.5rem;
    min-height: auto;
  }
  
  .question-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .likert-scale {
    gap: 0.5rem;
  }
  
  .likert-button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Base de Datos y Grilla de Celdas tipo Excel
   ========================================================================== */
.excel-tabs-container {
  display: flex;
  background-color: #ECECEC;
  border: 1px solid #D0D0D0;
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.excel-tab-btn {
  background-color: #F4F4F4;
  color: #555555;
  border: none;
  border-right: 1px solid #D0D0D0;
  padding: 12px 20px;
  font-family: var(--font-base);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.excel-tab-btn:hover {
  background-color: #EAEAEA;
}

.excel-tab-btn.active {
  background-color: var(--bg-white);
  color: var(--primary-orange);
  font-weight: 600;
  border-bottom: 3px solid var(--primary-orange);
  margin-bottom: -1px;
}

.excel-table-container {
  border: 1px solid #D0D0D0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  max-height: 480px;
  overflow-y: auto;
  overflow-x: auto;
  background-color: #F9F9F9;
}

.excel-style-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.excel-style-table th {
  background-color: #F0F0F0;
  color: var(--text-dark);
  border-right: 1px solid #D0D0D0;
  border-bottom: 2px solid #C0C0C0;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  white-space: nowrap;
}

.excel-style-table td {
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 8px 12px;
  background-color: #FFFFFF;
  font-size: 0.82rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.excel-style-table tr:hover td {
  background-color: #FFF9F0 !important;
}

.excel-style-table td.cell-num {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  font-weight: 600;
  color: var(--primary-orange-hover);
}

.excel-style-table td.cell-id {
  font-family: 'Courier New', Courier, monospace;
  color: var(--text-gray);
  font-weight: 500;
}

/* ==========================================================================
   Pantalla de Seguridad (Passcode Lock)
   ========================================================================== */
.dashboard-gate-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(26, 26, 27, 0.96), rgba(85, 85, 85, 0.99));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1.5rem;
}

.gate-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-gray-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  max-width: 485px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gate-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.gate-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.gate-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Animación de vibración para error de contraseña */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.35s ease-in-out;
}

/* Botón de eliminación de filas de prueba en grilla Excel */
.btn-delete-row {
  background: none;
  border: none;
  color: var(--text-gray-light);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-delete-row:hover {
  color: #D32F2F;
  background-color: #FFEBEE;
}

