/* ======= Vremea5B - Dark Blue Modern Responsive ======= */
.vremea5b-card {
  background: #0f141c;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Titlu zi */
.vremea5b-day {
  font-size: clamp(1.2em, 2vw, 1.6em);
  color: #3fa9f5;
  font-weight: 600;
  text-transform: capitalize;
}

/* Temperatura curentă + icon */
.vremea5b-temp {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Icon meteo principal */
.vremea5b-icon img {
  width: clamp(40px, 10vw, 70px);
  height: auto;
}

/* Descriere meteo */
.vremea5b-desc {
  font-size: clamp(0.9em, 2vw, 1.1em);
  color: #b0c4de;
}

/* Adresă (Strada, Localitatea, Județul...) */
.vremea5b-address {
  margin-top: 8px;
  font-size: clamp(0.85em, 2vw, 1em);
  color: #ccc;
  line-height: 1.4;
}

/* Secțiunea prognozei */
.vremea5b-forecast {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Card zilnic mic */
.vremea5b-day-mini {
  background: #1a222f;
  border-radius: 12px;
  padding: 10px;
  color: #d8e4f7;
  font-size: 0.9em;
  transition: all 0.3s ease;
}
.vremea5b-day-mini:hover {
  background: #243145;
  transform: translateY(-3px);
}

/* Nume zi (ex: luni, marți...) */
.vremea5b-day-mini strong {
  display: block;
  color: #3fa9f5;
  font-size: 1em;
  margin-bottom: 5px;
  text-transform: capitalize;
}

/* Imagini din forecast */
.vremea5b-day-mini img {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}

/* ======= Responsive Fine-Tuning ======= */
@media (max-width: 480px) {
  .vremea5b-card {
    padding: 15px;
    border-radius: 16px;
  }
  .vremea5b-forecast {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .vremea5b-day-mini {
    padding: 8px;
  }
  .vremea5b-icon img {
    width: 50px;
  }
}
