.weather-card {
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    flex-shrink: 0;
}

.header-weather {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.header-weather span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c3e50;
}

.header-weather .weather-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .weather-card {
        padding: 5px 8px;
        margin-left: 0;
        margin-top: 6px;
    }

    .header-weather {
        font-size: 14px;
    }

    .header-weather .weather-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .weather-card {
        padding: 4px 6px;
    }

    .header-weather {
        font-size: 13px;
    }

    .header-weather .weather-icon {
        width: 18px;
        height: 18px;
    }
}