body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: black;
  color: #171616;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.weather-app {
  max-width: 700px;
  margin: auto;
  padding: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ✅ Modern Search Container */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  background-color: rgba(7, 5, 5, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-bar {
  width: 80%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 1rem;
  padding: 0.5rem;
}

.search-btn {
  background-color: #080808;
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background-color: #0066cc;
}

.search-btn svg {
  fill: white;
}

/* ✅ Weather Icons Brighter */
.weather img,
.card img,
.day img {
  width: 100px;
  filter: drop-shadow(0 0 8px rgb(0, 0, 0));
}

/* ✅ Forecast Scroll */
.cards,
.days {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.cards::-webkit-scrollbar,
.days::-webkit-scrollbar {
  display: none;
}

.card,
.day {
  background: #3c393926;
  border-radius: 100px;
  padding: 0.5rem;
  min-width: 100px;
  text-align: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

h1, h2, h3, h4, p {
  margin: 0.5rem 0;
}

.loading {
  opacity: 0.9;
}

/* ✅ Optional Background Video Styling */
.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0,5
}
