@import "https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css";
/* acá podés agregar tus propias reglas */
:root {
  /* Colors and Lightness values */
  --bulma-scheme-h: 221;
  --bulma-scheme-s: 14%;
  --bulma-light-l: 90%;
  --bulma-light-invert-l: 20%;
  --bulma-dark-l: 20%;
  --bulma-dark-invert-l: 90%;
  --bulma-soft-l: 90%;
  --bulma-bold-l: 20%;
  --bulma-soft-invert-l: 20%;
  --bulma-bold-invert-l: 90%;
  /* etc. */

  /* Color Palettes */
  --bulma-primary: hsla(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-primary-l), 1);
  --bulma-primary-base: hsla(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-primary-l), 1);
  --bulma-primary-rgb: 0, 209, 178;
  --bulma-primary-h: 171deg;
  --bulma-primary-s: 100%;
  --bulma-primary-l: 41%;
  --bulma-primary-00-l: 1%;
  --bulma-primary-05-l: 6%;
  --bulma-primary-10-l: 11%;
  --bulma-primary-15-l: 16%;
  --bulma-primary-20-l: 21%;
  /* etc. */

  /* Typography */
  --bulma-family-primary: Inter, SF Pro, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Helvetica, Arial, sans-serif;
  --bulma-family-secondary: Inter, SF Pro, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Helvetica, Arial, sans-serif;
  --bulma-family-code: Inconsolata, Hack, SF Mono, Roboto Mono, Source Code Pro, Ubuntu Mono, monospace;
  --bulma-size-small: 0.75rem;
  --bulma-size-normal: 1rem;
  --bulma-size-medium: 1.25rem;
  --bulma-size-large: 1.5rem;
  /* etc. */
}
.title {
  --bulma-title-color: var(--bulma-text-strong);
  --bulma-title-family: false;
  --bulma-title-size: var(--bulma-size-3);
  --bulma-title-weight: var(--bulma-weight-extrabold);
  --bulma-title-line-height: 1.125;
  --bulma-title-strong-color: inherit;
  --bulma-title-strong-weight: inherit;
  --bulma-title-sub-size: 0.75em;
  --bulma-title-sup-size: 0.75em;
}

.title {
  color: var(--bulma-title-color);
  font-size: var(--bulma-title-size);
  font-weight: var(--bulma-title-weight);
  line-height: var(--bulma-title-line-height);
}
.lightyellow{
  background-color: lightyellow;
  color: black;
}
.left{
  text-align: left;
}
.disabled{
  display: none;
}

@media screen and (max-width: 768px) {
  .modal-card {
    width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .modal-card-body {
    overflow-x: hidden !important;
  }
}
html, body {
  height: 100%;
  margin: 0;
  font-family: sans-serif; /* Un estilo base de ejemplo */
}

/* 1. Convertimos el body en un contenedor flex */
body {
  display: flex;
  flex-direction: column; /* Apilamos los hijos verticalmente */
  min-height: 100vh; /* Asegura que el body ocupe al menos toda la altura de la pantalla */
}

/* 2. Hacemos que el contenido principal crezca para ocupar todo el espacio sobrante */
.main-content {
  flex: 1; /* Esto es la clave. Equivale a flex-grow: 1; */
}
  /* Estilos generales */
  .lista-acordeon {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0 auto;
    max-width: 600px; /* Ancho máximo para legibilidad en escritorio */
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    overflow: hidden; /* Para que los bordes redondeados se apliquen a los hijos */
  }

  /* Fila de resumen de la zona */
  .fila-resumen {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #dbdbdb;
    cursor: pointer;
    user-select: none; /* Evita que el texto se seleccione al hacer clic */
  }

  .grupo-zona:last-child .fila-resumen {
    border-bottom: none; /* Quita el borde del último elemento */
  }

  .zona-titulo {
    font-size: 1.1em;
  }

  .zona-contador {
    font-size: 0.9em;
  }

  .icono-desplegar {
W    display: inline-block;
    transition: transform 0.2s ease-in-out;
    margin-left: 8px;
  }

  /* Contenedor de las tarjetas */
  .contenedor-detalles {
    padding: 5px 15px 15px 15px; /* Espaciado interior */
    border-bottom: 1px solid #dbdbdb;
  }

  /* Estilo de cada tarjeta individual */
  .tarjeta {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
  }
  .tarjeta-destacada {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    background-color: pink;
    color: black;
  }

  .tarjeta p {
    margin: 0 0 8px 0; /* Espacio entre renglones de la tarjeta */
    line-height: 1.4;
  }
  .tarjeta p:last-child {
    margin-bottom: 0;
  }

  .tarjeta-nombre {
    font-weight: bold;
    font-size: 1.1em;
  }

  .tarjeta-direccion, .tarjeta-wapp a {
    color: #555;
  }

  .tarjeta-wapp a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
  }

  /* Estilo para la aclaración con texto más pequeño */
  .tarjeta-aclaracion {
    font-size: 0.85em;
    color: #888;
    font-style: italic;
    border-top: 1px dashed #e0e0e0;
    padding-top: 8px;
    margin-top: 8px;
  }
