body {
  min-height: 100vh;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
}

.container-meteo {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.h2-title-thin {
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
}

.h2-gradient {
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-top: 0;
  text-align: center;
}

img {
  margin: 15px auto;
  display: block;
}

strong {
  color: #ffeb3b;
}

.row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.col {
  padding: 10px;
  transition: transform 0.2s;
  text-align: center;
  width: 120px; /* Reduced width for more items per row */
  margin: 0 5px; /* Reduced margin for more items */
  flex: 0 0 auto;
}

.col:hover {
  transform: scale(1.05);
}

h4 {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card {
    width: 95%;
    margin: 20px auto;
    padding: 20px !important;
  }

  .row {
    flex-wrap: wrap;
  }

  .col {
    width: calc(25% - 10px);
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .col {
    width: calc(50% - 10px);
  }
}

.accordion {
  width: 100%;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-bottom: 10px;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}
