/* styles.css */
body {
  padding: 0;
  display: flex-start;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  font-family: "PT Mono", "Roboto Mono", monospace, "Courier New", "Courier", monospace, "Helvetica Neue", Arial, sans-serif;
  background-color: rgb(158 157 137 / 41%);
  margin-left: 2em;

}

h1 {
  color: #333;
  margin-bottom: 1.5em;
}

h3 {
  display: flex;
  align-items: center;
}

#clothingRecommendations {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

#forecastThreeHours #forecastSixHours {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #FFF;
  border: none;
  padding: 2.0em 2.5em;
  font-size: 16px;
  font-family: "Roboto Mono", monospace, "PT Mono", "Courier New", "Courier", monospace, "Helvetica Neue", Arial, sans-serif;
  line-height: 150%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;

}


#cityInput {

  border-radius: 6px;
  background: #FFF;
  border: none;
  font-size: 16px;
  font-family: "Roboto Mono", monospace, "PT Mono", "Courier New", "Courier", monospace, "Helvetica Neue", Arial, sans-serif;

}

.main-container {
  max-width: 600px;
  margin: 2em auto;
  background: none;
  padding: 0 1em;
}

.toggle-group {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1em;
}

.toggle-btn {
  background: #fff;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0.7;
}
.toggle-btn.active, .toggle-btn:focus {
  background: #333;
  color: #fff;
  opacity: 1;
  border-color: #333;
}

button {
  background: #fff;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
button:hover, button:focus {
  background: #f0f0e8;
  border-color: #888;
}

input[type="text"] {
  border-radius: 6px;
  background: #FFF;
  border: 1.5px solid #333;
  font-size: 16px;
  font-family: "Roboto Mono", monospace, "PT Mono", "Courier New", "Courier", monospace, "Helvetica Neue", Arial, sans-serif;
  padding: 0.5em 1em;
  margin-right: 0.5em;
}

section {
  margin-bottom: 1.5em;
}

/* Добавьте стили по желанию */