    /* Estilos para el modal */
    #modalPais {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      z-index: 1000;
      width: 80%;
      max-height: 80%;
      overflow-y: auto; /* Agregado para permitir el scroll vertical */
    }

    /* Estilos para la superposición del modal */
    #modalPais-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }

    /* Estilos para la lista de países */
    #country-list {
      list-style: none;
      padding: 0;
      column-count: 4;
    }

    #country-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .flag-icon {
      margin-right: 10px;
    }

    /* Estilos para el botón de abrir el modal */
    #open-modalPais-btn {
      cursor: pointer;
      background-color: #0070B8;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
    }

    /* Estilos para el botón Cerrar dentro del modal */
    #close-modalPais-btn {
      cursor: pointer;
      background-color: #ccc;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      position: fixed;
      top: 10px;
      right: 10px;
      z-index: 1001; /* Asegura que esté sobre el modal */
    }
