body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #35424a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-bar {
    text-align: center;
    margin: 40px 0;
}

.search-bar input[type="text"] {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #35424a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar input[type="submit"]:hover {
    background-color: #45a049;
}
#map {
    height: 400px; /* Hauteur de la carte */
    width: 100%;  /* Largeur de la carte */
    margin: 100px 0; /* Marge autour de la carte */
    border: 2px solid #35424a; /* Bordure de la carte */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Ombre de la carte */
  }
  .country-list-container {
    width: 300px;
    height: 400px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    margin-top: 20px;
}

.country-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.country-item:hover {
    background-color: #f0f0f0;
}