 body {
      background-color: #141A33;
      font-family: Arial, sans-serif;
      color: white;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      margin-top: 10px;
      background-color: #314158;
      padding: 20px;
      border-radius: 20px;
    }

    h1 {
      text-align: center;
      margin-bottom: 10px;
    }

    #migrationCountdown {
      text-align: center;
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #ccc;
    }

    .search-container {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    #searchBar {
      width: 80%;
      max-width: 600px;
      padding: 10px;
      border-radius: 10px;
      border: none;
      font-size: 1rem;
      background-color: #DCDEDE;
      color: black;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background-color: #292E3D;
      border-radius: 15px;
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .card:hover {
      transform: scale(1.03);
    }
    
     .flag-img {
width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 5px;
    }
    

    .card-img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      display: block;
      margin: 0 auto 10px;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
      -webkit-text-stroke: 0.4px black;
    }
    
#locationList {
  min-height: 800px;
}


   


    .country-text {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .copy-btn {
      background-color: #fff;
      border: 10px;
      border-radius: 8px;
      padding: 6px 14px;
      cursor: pointer;
      color: black;
      font-weight: bold;
      box-shadow: 10px 5px 5px black;
    }

    .copy-btn:hover {
      background-color: #4a4;
    }
    
    
    #migrationCountdownBox {
  position: relative;
  background-color: #1f2a3e;
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  z-index: 10;
}

.disclaimer {
  font-size: 0.85rem;
  color: #ccc;
  text-align: center;
  margin-top: 40px;
  min-height: 60px; /* Espacio reservado para evitar movimiento */
}


/* Estilo general del menú */
.nav-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.nav-menu {
  display: flex;
  gap: 30px;
  background-color: #222;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  list-style: none;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffcc00;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .nav-menu {
    gap: 20px;
    padding: 10px 16px;
  }

  .nav-menu li a {
    font-size: 14px;
  }
}



  