.weekly-forecast-wrapper {
    width: 100%;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
}

.weekly-forecast-inner {
    background: linear-gradient(135deg, #e8e8e8, #d6d6d6, #f4f4f4);
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.weekly-forecast-title {
    font-weight: bold;
    margin: 20px 0 20px 16px;
    font-size: 1rem;
}

.weekly-forecast-day {
    display: flex;
    align-items: center;
    padding: 27px 27px;
    border-bottom: 1px solid #ddd;
}

.weekly-forecast-day:last-child {
    border-bottom: none;
}

.weekly-forecast-day-name {
    width: 25%;
    font-weight: bold;
    margin: 0 0 0 8px;
    font-size: 1rem;
}

.weekly-forecast-day-condition {
    width: 50%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.weekly-forecast-day-icon {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}

.weekly-forecast-day-condition span {
    font-size: 1rem;
}

.weekly-forecast-day-temp {
    width: 25%;
    font-weight: bold;
    margin: 0 8px 0 0;
    text-align: right;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .weekly-forecast-wrapper {
        width: 100%;
        padding: 8px 12px;
    }

    .weekly-forecast-title {
        margin: 16px 0 16px 12px;
    }

    .weekly-forecast-day-name {
        margin-left: 6px;
        margin-bottom: 15px;
    }

    .weekly-forecast-day-icon {
        width: 50px;
        height: 50px;
    }

    .weekly-forecast-day-temp {
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .weekly-forecast-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .weekly-forecast-title {
        margin: 16px 0 12px 8px;
        font-size: 1rem;
    }

    .weekly-forecast-day {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
    }

    .weekly-forecast-day-name {
        margin-left: 6px;
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .weekly-forecast-day-condition span {
        font-size: 1rem;
    }

    .weekly-forecast-day-icon {
        width: 50px;
        height: 50px;
        margin-right: 6px;
    }

    .weekly-forecast-day-temp {
        margin-right: 6px;
        font-size: 0.9rem;
    }
}
