.weather-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  overflow-x: auto;
}

.weather-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2rem;
}

.weather-icon-item .hour-label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.weather-icon-item i {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .weather-icons-row {
    padding: 0.25rem 0.5rem;
  }

  .weather-icon-item {
    min-width: 1.5rem;
  }

  .weather-icon-item i {
    font-size: 1rem;
  }

  .weather-icon-item .hour-label {
    font-size: 0.65rem;
  }
}

.uv-indicator {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.uv-low {
  background-color: #558B2F;
  /* Green */
}

.uv-moderate {
  background-color: #F9A825;
  /* Yellow/Orange */
}

.uv-high {
  background-color: #EF6C00;
  /* Orange */
}

.uv-very-high {
  background-color: #B71C1C;
  /* Red */
}

.uv-extreme {
  background-color: #6A1B9A;
  /* Purple */
} */

/* Rest of the styles remain the same */
.wind-arrow {
  color: #0d6efd;
}

.wi-raindrops {
  font-size: 1rem;
}

.hover-bg-light:hover {
  background-color: rgba(0, 0, 0, .03);
}

.weather-data-row {
  font-size: 0.9375rem;
}

.weather-data-row .uv-indicator {
  padding: 0.15rem 0.35rem;
  font-size: 0.875rem;
}

@media (max-width: 767.98px) {
  .gap-3 {
    gap: 0.75rem !important;
  }

  .wind-arrow {
    width: 14px;
    height: 14px;
  }
}
.custom-tabs {
  border-bottom: 1px solid #dee2e6;
}

.custom-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #6c757d;
  background-color: transparent;
  position: relative;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  padding-bottom: 0.75rem;
  margin-bottom: -1px;
}

.custom-tabs .nav-link:hover {
  color: #0d6efd;
  border-bottom-color: rgba(13, 110, 253, 0.3);
}

.custom-tabs .nav-link.active {
  color: #0d6efd;
  background-color: transparent;
  border-bottom: 2px solid #0d6efd;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .custom-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
  }

  .custom-tabs .nav-link {
      white-space: nowrap;
  }
}

.hourly-content {
  position: relative;
}

.hourly-day-section {
  width: 100%;
}

.dropdown-item {
  cursor: pointer;
}

.btn-group {
  z-index: 1;
}

@media (max-width: 768px) {
  .d-flex {
      flex-wrap: wrap;
      gap: 1rem !important;
  }

  .dropdown, .btn-group {
      width: 100%;
  }

  .dropdown-toggle {
      width: 100%;
      text-align: left;
  }

  .btn-group {
      display: flex;
  }

  .btn-group .btn {
      flex: 1;
  }
}

  .hourly-content {
    position: relative;
  }

  .hourly-day-section {
    width: 100%;
  }

  .list-group-item {
    cursor: pointer;
  }

  .btn-group {
    z-index: 1;
  }

  .list-group-item {
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    padding: 0.75rem 1.25rem;
  }

  .list-group-item:first-child {
    border-top: none;
  }

  .list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }

  .wind-arrow {
    color: #0d6efd;
  }

  .wi {
    line-height: 1;
    font-size: 1.25rem;
    vertical-align: middle;
  }

  .wi-raindrops {
    font-size: 1rem;
  }

  .hover-bg-light:hover {
    background-color: rgba(0, 0, 0, .03);
  }

  @media (max-width: 767.98px) {
    .list-group-item {
      padding: 0.5rem 1rem;
    }

    .temp-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .wi {
      font-size: 1.1rem;
    }

    .wind-arrow {
      width: 14px;
      height: 14px;
    }

    .hourly-row {
      padding: 0.25rem 0;
    }
  }
