.weather-widget {
    padding: 20px;
}

.weather-widget .card {
    text-align: center;
    color: white;
    background-color: #ffffff20;
    backdrop-filter: blur(10px);
    width: 100%
}


.weather-widget .card-content {
    padding-top: 0;
}

.weather-widget .slider-pagination {
    bottom: -24px !important;
}


.weather-widget .city-search {
    padding: 20px 20px 0 20px;
    width: 100%;
}

.weather-widget .city-search .dropdown-trigger {
    width: 100%;
}


.weather-widget .city-search input {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    border: none;
}

.weather-widget .city-search input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.weather-widget .city-search .dropdown-menu {
    width: 100%;
    padding: 10px 20px;
}

.weather-widget .city-search .dropdown-content {
    max-height: 300px;
    overflow: auto;
}

.weather-widget .city-search .dropdown-menu .dropdown-item {
    text-align: left;
}


.weather-widget .widget-header {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.weather-widget .widget-header .city-name {
    display: flex;
    font-weight: 600;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}


.weather-widget .widget-header .city-name .icon {
    padding-right: 10px;
    font-size: 20px;
}


.weather-widget .slider-navigation-next, .slider-navigation-previous {
    background: none;
    border-width: 2px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.weather-widget .max-temp {
    font-size: 16px;
    font-weight: 600;
}

.weather-widget .min-temp {
    font-size: 12px;
}

.weather-temperature {
    display: flex;
    align-items: center;
    justify-content: center;
}

.focused-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.focused-temp .max-temp {
    font-size: 34px;
    font-weight: 400;
}


.focused-temp .min-temp {
    font-size: 20px;
    font-weight: 400;
}

.weather-widget .columns {
    justify-content: center;
}

.weather-condition .condition-label {
    font-weight: 600;
}


.weather-widget .other-parameters {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.weather-widget .other-parameters .parameter-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.weather-widget .other-parameters .parameter-item .parameter-icon {
    margin-right: 10px;
}

.weather-widget .other-parameters .parameter-item .parameter-icon svg {
    height: 24px;
    width: 24px;
    fill: #fff;
}


.weather-widget .card-footer {
    padding: 20px 20px 40px;
    border: none;
    width: 100%;
    overflow: hidden
}

.weather-widget .card-footer-item {
    backdrop-filter: blur(10px);
    background-color: #ffffff20;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
    border: none;
    max-height: 120px;
    max-width: 220px;
}

.weather-widget .card-footer-item img {
    height: 50px;
    width: 50px
}

.weather-widget .more-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
}

.weather-widget .more-links .button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px;
}


@media screen and (max-width: 768px) {
    .weather-widget {
        padding: 0;
    }

    .weather-widget .card-content {
        padding: 0;
    }


    .weather-temperature {
        padding-bottom: 4px;
    }

    .weather-condition {
        padding-top: 0;
        padding-bottom: 0;
    }

    .weather-condition img {
        height: 90px;
        width: 90px;
    }
}

@media screen and (max-width: 480px) {
    .weather-widget-column {
        padding: 0;
    }

    .city-name {
        font-size: 20px;
    }

    .weather-temperature {
        justify-content: flex-end;
    }

    .focused-temp .max-temp {
        font-size: 24px;
    }

    .focused-temp .min-temp {
        font-size: 20px;
    }

    .weather-condition img {
        height: 74px;
        width: 74px;
    }

}