/* OTH Weather Widget — oth-weather-widget.css  v1.0.0 */

.oth-weather-widget {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px 16px 12px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-width: 220px;
}

.oth-weather-header {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.oth-weather-slots {
  display: flex;
  gap: 4px;
}

.oth-weather-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.oth-weather-slot-label {
  font-size: 0.65rem;
  opacity: 0.75;
  margin-bottom: 2px;
}

.oth-weather-slot-icon {
  font-size: 2rem;
  line-height: 1;
  margin: 2px 0;
}

.oth-weather-slot-temp {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.oth-weather-slot-range {
  font-size: 0.58rem;
  opacity: 0.75;
  margin-top: 1px;
  white-space: nowrap;
}

.oth-weather-slot-desc {
  font-size: 0.6rem;
  opacity: 0.8;
  margin-top: 3px;
  text-align: center;
  line-height: 1.2;
}

.oth-weather-slot-precip {
  font-size: 0.58rem;
  opacity: 0.8;
  margin-top: 2px;
}

.oth-weather-slot-na {
  font-size: 1.2rem;
  opacity: 0.4;
  margin: 8px 0;
}

.oth-weather-error {
  font-size: 0.7rem;
  opacity: 0.7;
  padding: 4px 0;
}

@media (max-width: 480px) {
  .oth-weather-widget {
    bottom: 16px;
    right: 16px;
    min-width: 180px;
    padding: 8px 12px 10px;
  }
  .oth-weather-slot-icon {
    font-size: 1.6rem;
  }
  .oth-weather-slot-temp {
    font-size: 1.05rem;
  }
  .oth-weather-slot-range {
    font-size: 0.52rem;
  }
}
