html, body {
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#selectContainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 0;
}

#countrySelect {
  width: 200px;
  margin: 0 auto;
}

.weather-icon {
  width: 64px;
  height: 64px;
}

.weather-icon-sm {
  width: 48px;
  height: 48px;
}

.modal-content {
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  padding: 0.5rem 0.75rem;
}

.modal-body {
  padding: 0.75rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 0.5rem 0.75rem;
}

.news-list .card {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  margin-bottom: 10px;
}

.news-list .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.news-list .card-body {
  padding: 0.5rem;
}

.news-list .card-title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.news-list .card-text {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.news-list .btn-primary {
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
}

.news-list .text-muted {
  font-size: 0.7rem;
}

#wikiContent {
  font-size: 0.9rem;
  line-height: 1.5;
  max-height: 50vh;
  overflow-y: auto;
}

#wikiContent::-webkit-scrollbar {
  width: 8px;
}

#wikiContent::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#wikiContent::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

#wikiContent::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#currencyInfo {
  font-size: 0.9rem;
  line-height: 1.5;
}

#currencyConverter .input-group {
  margin-bottom: 1rem;
}

#currencyConverter .form-control,
#currencyConverter .form-select {
  font-size: 0.9rem;
}

#conversionResult {
  font-size: 1rem;
  font-weight: bold;
  color: #28a745;
}