.map-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.map-title {
    font-family: 'Arial', sans-serif;
    color: #895129;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 2.2em;
}

.red-bar {
    height: 3px;
    width: 100px;
    background-color: #ff0000;
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    max-width: 600px;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: 2px solid black;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: lightgreen;
}

.search-button {
    padding: 12px 24px;
    background-color: #29A746;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: lightgreen;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-popup {
    text-align: center;
    padding: 10px;
    font-family: 'Arial', sans-serif;
}

.custom-popup h3 {
    color: #895129;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.custom-popup p {
    margin: 5px 0;
    color: #555;
}

.custom-popup .btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #895129;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.custom-popup .btn:hover {
    background-color: green;
    color:white;
}

.marker-cluster-custom {
    background: #FC3323;
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    height: 40px;
    line-height: 37px;
    text-align: center;
    width: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.marker-cluster-custom:hover {
    transform: scale(1.1);
    background: black;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.error-message {
    color: #ff0000;
    margin-top: 5px;
    display: none;
}        
.layer-control {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.layer-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.layer-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.layer-checkbox label {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.country-flag-link {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.country-flag-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.country-flag-link.active .card {
  background-color: #f8f9fa;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.country-flag-link {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.country-flag-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.country-flag-link.active .card {
  background-color: #f8f9fa;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.flag-img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}.flag-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #f8f9fa;
}.card-body1 {
  padding: 1rem;
  background-color: #fff;
}/* Alternative: Hide only the Leaflet link while keeping other attributions */
.leaflet-control-attribution a[title="A JS library for interactive maps"] {
    display: none !important;
}