/*
* Theme Name: Apumayo Theme
* Author: Bruno Tafur
* Text Domain: apumayotheme
* Domain Path: /languages
*/
/* wrapper de la "tabla" (sin fondo blanco general) */
.grid-table{
  border-radius: var(--radius);
  border: 2px solid #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6,24,44,0.12);
  font-family:"Roboto";
  font-size: 90%;
}

/* encabezado principal: mismo fondo y letras blancas, peso máximo 500 */
.grid-header{
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  gap: 0;
  align-items: center;
  padding: 12px 16px;
  background: var(--header-green);
  color: var(--text-light);
  font-weight: 600;
}

/* contenedor de filas */
.rows{ display: block; }

/* fila: por defecto fondo blanco; sin bordes visibles */
.row{
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  gap: 0;
  align-items: start;
  padding: 12px 16px;
  background: var(--row-white); /* fondo aplicado solo a filas */
}

/* filas alternas: fondo suave para facilitar lectura (fila completa) */
.row:nth-of-type(even){
  background: var(--row-alt);
}

/* separador sutil entre filas (opcional, muy tenue) */
.row + .row{
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* columnas (sin estilos de tipografía ni tamaños) */
.col{ padding: 0 12px 0 0; }

/* encabezados secundarios (secciones) con fondo gris oscuro y letras blancas, peso 500 */
.section{
  display: block;
  padding: 10px 16px;
  background: var(--section-gray);
  color: var(--text-light);
  font-weight: 600;
}

