.WeatherWidget .weatherContainer {
    width: max-content;
    max-width: 250px;
    height: max-content;
    /* background: linear-gradient(45deg, #0c23f5a6, #84D3FF); */
    color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(129, 129, 129, 0.2);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    backdrop-filter: var(--primary-blur);
    overflow: hidden;

}

.WeatherWidget .weatherContainer.clear {
    background: linear-gradient(45deg, #DA7211, #FDF52F);
}

.WeatherWidget .weatherContainer.cloudy {
    background: linear-gradient(45deg, #959FD8, #77c1c5);
}

.WeatherWidget .weatherContainer.weatherContainer.rainy {
    background: linear-gradient(45deg, #0539C0, #5BC4FF);
}

.WeatherWidget .weatherContainer.weatherContainer.snow {
    background: linear-gradient(45deg, #ffffff, #c0d6e4);
}

.WeatherWidget .weatherContainer .bar {
    height: 2px;
    width: 100%;
    background-color: #FFFFFF;
}

.WeatherWidget .weatherContainer .weatherIconContainer {
    width: max-content;
    min-width: 65px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 10px;
    z-index: auto;
}

.WeatherWidget .weatherContainer .weatherIconContainer .weatherIcon {
    width: 40px;
    height: 40px;
    -webkit-user-drag: none;
}

.WeatherWidget .weatherContainer .weatherIconContainer .weatherIconText {
    height: max-content;
    width: fit-content;
    max-width: 140px;
    text-wrap: wrap;
    text-align: left;
    font-size: 14px;
    color: currentColor;
    font-weight: 400;
    z-index: 1;
}

.WeatherWidget .weatherContainer .weatherInfoContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}

.WeatherWidget .weatherContainer .weatherInfoContainer .weatherLocation {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.WeatherWidget .weatherContainer .weatherInfoContainer .weatherLocation .weatherLocationText {
    font-size: 12px;
    color: currentColor;
    font-weight: 600;
    text-transform: uppercase;
}

.WeatherWidget .weatherContainer .weatherInfoContainer .weatherLocation .currentTimestamp {
    width: 100%;
    font-size: 10px;
    color: currentColor;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 3px;
    /* flex-direction: column; */
}

.WeatherWidget .weatherContainer .weatherInfoContainer .weatherTemperature {
    width: max-content;
    font-size: 20px;
    color: currentColor;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    line-height: 18px;
}

.WeatherWidget .weatherContainer .weatherInfoContainer .weatherTemperature .temperature {
    line-height: 16px;
}

@media (max-width: 500px) {
    .WeatherWidget .weatherContainer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: max-content;
        gap: 5px;
        padding: 5px;
    }

    .WeatherWidget .weatherContainer .weatherIconContainer {
        flex-direction: row-reverse;
        align-items: center;
        gap: 5px;
    }

    .WeatherWidget .weatherContainer .bar {
        height: 2px;
        width: 100%;
    }

    .WeatherWidget .weatherContainer .weatherIconContainer .weatherIconText {
        max-width: 100px;
        font-size: 12px;
    }

}