#weather-location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
}

.location-part-1 select {
  margin-right: 10px;
  min-width: 200px;
}

#location-detail-list table {
  border-collapse: collapse;
  width: 100%;
}

#location-detail-list th, td {
  padding: 5px;
  border: 1px solid #ddd;
}


.ww-card {
        background: linear-gradient(135deg, #a7d9ff, #e0f2ff);
        border-radius: 25px;
        padding: 30px;
        color: #333;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .ww-card::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        filter: blur(15px);
        opacity: 0.8;
        z-index: 1;
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    }

    .ww-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        filter: blur(10px);
        opacity: 0.6;
        z-index: 1;
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    }

    .ww-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;
    }

    .ww-location {
        font-size: 1.2em;
        font-weight: bold;
        color: #333;
    }

    .ww-status {
        font-size: 0.9em;
        color: #555;
        margin-left: 10px;
    }

    .ww-current-weather {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .ww-temperature {
        font-size: 4em;
        font-weight: 200;
        line-height: 1;
        display: flex;
        align-items: flex-start;
    }

    .ww-degree-unit {
        font-size: 0.5em;
        align-self: flex-start;
        margin-top: 10px;
    }

    .ww-min-max-temp {
        font-size: 1.1em;
        color: #555;
        display: flex;
        flex-direction: column;
        margin-left: 15px;
    }

    .ww-min-max-temp span {
        display: flex;
        align-items: center;
    }

    .ww-min-max-temp .ww-arrow {
        margin-right: 5px;
        font-size: 0.8em;
    }

    .ww-sun-icon {
       
        line-height: 1;
    }

    .ww-additional-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;
        z-index: 2;
    }

    .ww-info-item {
        display: flex;
        flex-direction: column;
        font-size: 0.9em;
        color: #555;
    }

    .ww-info-label {
        font-weight: bold;
        color: #333;
        margin-bottom: 3px;
    }

   .ww-forecast {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;

    scrollbar-width: none;       /* Firefox - ẩn mặc định */
    -ms-overflow-style: none;    /* IE 10+ - ẩn mặc định */
    }

    .ww-forecast::-webkit-scrollbar {
        height: 6px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    /* Khi hover mới hiển thị thanh cuộn */
    .ww-forecast:hover::-webkit-scrollbar {
        opacity: 0.5;
    }

    .ww-forecast::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    /* Firefox: khi hover mới hiện scrollbar */
    @supports (scrollbar-color: auto) {
        .ww-forecast {
            scrollbar-width: none;
        }

        .ww-forecast:hover {
            scrollbar-width: thin;
        }
    }


    .ww-forecast::-webkit-scrollbar {
        display: none;
    }

    .ww-day-forecast {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 10px;
        min-width: 60px;
        text-align: center;
    }

    .ww-day-forecast:first-child {
        margin-left: 0;
    }
    .ww-day-forecast:last-child {
        margin-right: 0;
    }

    .ww-day-name {
        font-size: 0.9em;
        font-weight: bold;
        margin-bottom: 8px;
        color: #333;
    }

    .ww-forecast-icon {
        font-size: 2.2em;
        margin-bottom: 8px;
    }

    .ww-forecast-temp {
        font-size: 0.9em;
        color: #555;
    }