.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px; /* ограничение ширины */
    position: relative;
}

.weather-widget {
    position: relative;
    right: 40;
    top: 20%;
    transform: translateY(-50%);
}

.weather-icon-container {
    position: relative;
    width: 128px;  /* увеличенная ширина */
    height: 128px; /* увеличенная высота */
}

.weather-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.temperature-overlay {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-size: 20px;
    pointer-events: none;
}