/* Custom CSS */
.calculator {
  max-width: 500px;
  margin: 30px auto;
  background: #e6e6e6;
  padding: 30px;
  border-radius: 20px;
  box-shadow:
    8px 8px 15px #b8b9be,
    -8px -8px 15px #ffffff;
}
.calculator h2 {
  text-align: center;
  margin-bottom: 20px;
}
.inputBox {
  margin-bottom: 20px;
}
.inputBox label {
  display: block;
  margin-bottom: 5px;
}
.inputBox input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  box-shadow:
    inset 4px 4px 6px #d1d9e6,
    inset -4px -4px 6px #ffffff;
}
.btnBox {
  text-align: center;
}
.btnBox button {
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow:
    4px 4px 6px #b8b9be,
    -4px -4px 6px #ffffff;
}
.resultBox {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.custom-weather-box-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.custom-weather-box {
  background: #e6e6e6;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 8px 8px 15px #b8b9be, -8px -8px 15px #ffffff;
  max-width: 400px;
  width: 100%;
}
.weather-header {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.weather-main {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.weather-icon {
  flex: 0 0 auto;
}
.weather-info {
  text-align: right;
}
.weather-temp {
  font-size: 26px;
  font-weight: bold;
}
.weather-city,
.weather-time {
  font-size: 16px;
}
.city-selector {
  margin-top: 20px;
  text-align: center;
}
.city-selector select {
  padding: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: inset 4px 4px 6px #d1d9e6, inset -4px -4px 6px #ffffff;
}
