
html, body {
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Select2 Dropdown Styles */

#selectContainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 0;
}

#countrySelect {
  width: 200px;
  margin: 0 auto;
  text-align: center;

}


/* EasyButton Icon Styles */
.leaflet-bar .easy-button-button .fa-umbrella-beach {
  color: rgb(185, 52, 7) !important;
  background-color: #fff!important;
}

.leaflet-bar .easy-button-button .fa-money-bill-wave {
  color: green !important;
  background-color: #fff!important;
}

.leaflet-bar .easy-button-button .fa-cloud-sun {
  color: rgb(26, 0, 128) !important;
  background-color: #fff!important;
}

.leaflet-bar .easy-button-button .fa-book {
  color: rgb(243, 1, 1) !important;
  background-color: #fff!important;
  
}
.leaflet-bar .easy-button-button .fa-info.fa-xl {
   color: rgb(243, 1, 203) !important;
  background-color: #fff!important;
}

.leaflet-bar .easy-button-button .fa-exclamation-triangle {
   color: rgb(243, 1, 1) !important;
  background-color: #fff!important;
}

/* Weather Modal Custom Styles */
#weatherModal .modal-header {
  background: linear-gradient(90deg, #2193b0 0%, #6dd5ed 100%);
  border-bottom: none;
}
#weatherModal .modal-content {
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  background: #f7fbff;
}
#weatherModal .modal-title {
  font-weight: 700;
  letter-spacing: 1px;
}
#weatherModal .fa-cloud {
  color: #2196f3;
  background: #e3f2fd;
  border-radius: 50%;
  padding: 12px;
  font-size: 2em;
  box-shadow: 0 2px 8px #b3e5fc;
}
#weatherModal .fa-wind {
  color: #00bcd4;
  background: #e0f7fa;
  border-radius: 50%;
  padding: 12px;
  font-size: 2em;
  box-shadow: 0 2px 8px #b2ebf2;
}
#weatherModal .fa-tint {
  color: #4caf50;
  background: #e8f5e9;
  border-radius: 50%;
  padding: 12px;
  font-size: 2em;
  box-shadow: 0 2px 8px #c8e6c9;
}
#weatherModal .fa-thermometer-half {
  color: #ff9800;
  background: #fff3e0;
  border-radius: 50%;
  padding: 12px;
  font-size: 2em;
  box-shadow: 0 2px 8px #ffe0b2;
}
#weatherModal .table-sm td {
  vertical-align: middle;
  font-size: 1.1em;
}
#weatherModal #weatherIcon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #2196f3);
}
#weatherModal #weatherDescription {
  font-size: 1.2em;
  font-weight: 500;
  color: #1976d2;
  margin-bottom: 12px;
}

/* WEATHER FORECAST  */
#weatherForecast {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.forecast-day {
  background: linear-gradient(135deg, #e3f2fd 0%, #b3e5fc 100%);
  border-radius: 10px;
  padding: 0.75rem;
  width: 90px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(33,147,176,0.13);
}

.forecast-day img {
  width: 40px;
  height: 40px;
}

.forecast-day p {
  margin: 0.25rem 0;
  font-weight: bold;
  color: #2196f3;
}

.forecast-day small {
  display: block;
  color: #1976d2;
  font-size: 0.75rem;
}

/* Crisis*/
#crisisModal .modal-header {
  background: linear-gradient(90deg, #f85032 0%, #e73827 100%);
  border-bottom: none;
  color: #fff;
}
#crisisModal .modal-content {
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(135, 31, 31, 0.2);
  background: #fff7f7;
}
#crisisModal .modal-title {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
#crisisModal .list-group-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #ffeaea;
  color: #b71c1c;
}
#crisisModal .list-group-item strong {
  color: #e73827;
}
#crisisModal a {
  color: #b71c1c;
  text-decoration: underline;
}
#crisisModal a:hover {
  color: #f85032;
}

/* Custom styles for currency modal */
#currencyModal .modal-header {
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
}
#currencyModal .modal-content {
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.15);
}
#currencyModal .modal-body {
  background: #f5f8fd;
}
#currencyModal .form-floating > .form-control,
#currencyModal .form-floating > .form-select {
  border: 2px solid #1976d2;
  border-radius: 0.5rem;
  background: #fff;
}
#currencyModal .form-floating > label {
  color: #1976d2;
  font-weight: 500;
}