/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #f0f0f0;
}

.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #f0f0f0;
}

input,
button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input {
  width: 70%;
  background: rgba(255, 255, 255, 0.2);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

input::placeholder {
  color: rgba(240, 240, 240, 0.7);
}

button {
  background-color: #00b4d8;
  color: #fff;
  cursor: pointer;
}

.carousel-control-prev:hover {
  background-color: rgba(0, 150, 199, 0.5);
  border-radius: 12px 0 0 12px;
}

.carousel-control-next:hover {
  background-color: rgba(0, 150, 199, 0.5);
  border-radius: 0 12px 12px 0;
}

#loading {
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* Carousel Styles */
#weatherCarousel {
  display: none;
}

.carousel {
  margin-top: 20px;
}

.carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Current Weather Slide */
.gradient-custom {
  background: linear-gradient(135deg, #00b4d8, #90e0ef);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.gradient-custom h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.gradient-custom p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #f0f0f0;
}

.gradient-custom img {
  width: 100px;
  height: 100px;
}

/* Forecast Slide */
#forecastSlide {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

#forecastSlide .flex-column {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 10px;
  transition: transform 0.3s ease;
}

#forecastSlide .flex-column:hover {
  transform: translateY(-5px);
}

#forecastSlide img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

#forecastSlide p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #f0f0f0;
}

#forecastSlide .small {
  font-size: 0.8rem;
  color: #cccccc;
}

/* Override Bootstrap's .text-muted class */
body .text-muted {
  color: #cccccc !important;
}
