/* Weather Widget Styles */
.bpd-weather-widget {
    background-color: #0060ad;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 100%;
}

/* Arrow at the bottom left */
.bpd-weather-widget:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #0060ad;
}

.bpd-weather-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.bpd-weather-date {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.day-of-week, .month-day {
    display: inline;
}

.full-date-desktop {
    display: none;
}

@media (min-width: 601px) {
    .day-of-week, .month-day {
        display: none;
    }
    .full-date-desktop {
        display: inline;
    }
    .bpd-weather-date {
        font-size: 42px;
        flex-direction: row;
    }
}

.bpd-weather-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
    display: none;
}

.bpd-weather-right {
    text-align: right;
    flex: 1;
}

.bpd-weather-city {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bpd-weather-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.bpd-weather-main i {
    font-size: 48px;
    margin-right: 15px;
}

.bpd-weather-temp {
    font-size: 48px;
    font-weight: 700;
}

.bpd-weather-highlow {
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .bpd-weather-widget {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        max-width: 350px;
        width: auto;
    }

    .bpd-weather-left {
        width: 100%;
    }

    .bpd-weather-date {
        margin-bottom: 20px;
        font-size: 36px;
    }

    .bpd-weather-divider {
        width: 100%;
        height: 1px;
        margin: 0 0 20px 0;
        display: block;
    }

    .bpd-weather-right {
        width: 100%;
        text-align: left;
    }

    .bpd-weather-main {
        justify-content: flex-start;
        margin-bottom: 10px;
    }
}
