body {
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
}

#map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.weather-app {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

#search-container {
    display: flex;
    margin-bottom: 10px;
}

#city-input {
    padding: 10px;
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

#search-btn {
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

#weather-info {
    /* background: white; */
    /* padding: 10px; */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.weather-card {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.weather-item {
    background: #f8f9fa;
    padding: 5px;
    border-radius: 5px;
    flex: 1 1 150px;
    min-width: 0;
}

.city {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    width: 100%;
    text-transform: uppercase;
}

.fas {
    margin-right: 8px;
    color: #3498db;
}

.help-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

#help-btn {
  background: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#help-content {
  position: absolute;
  bottom: 50px;
  right: 0;
  background: rgb(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 250px;
  display: none;
  text-align: left;
}

#help-content.visible {
  display: block;
  
}

#help-content h3 {
  margin-top: 0;
}

#help-content li {
  margin: 10px 0;
}

kbd {
  background: #eee;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: monospace;
}

.fa-question-circle {
  color: #f9fafa;
  cursor: pointer;
}