.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-semi-transparent); /* fondo semitransparente */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }
  
  .modal-overlay.active {
    display: flex;
  }
  
  .modal-box {
    background-color: var(--color-bg-contrast);
    padding-top: 5px;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--color-shadow);
    width: 45%;
    max-width: 600px;           /* O un ancho fijo máximo adecuado */
    min-width: 300px;
    max-height: 600px;
    overflow-wrap: break-word;  /* Asegura que las palabras largas se dividan */
    word-wrap: break-word;
    height: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    max-height: 90%
  }
  