/* 本文件仅包含 04-weather 特有样式，公共样式见 ../../shared/styles/flight-style.css */

/* === 天气预设面板 === */
.weather-preset-panel {
    position: absolute;
    top: 20px;
    left: 150px;
    z-index: 1400;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;

    background: rgba(8, 14, 30, 0.6);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #a0ddf8;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 212, 255, 0.04) inset;
}

.weather-preset-panel label {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(180, 200, 220, 0.85);
}

.weather-preset-panel select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 4px;
    color: #d5f4ff;
    padding: 4px 6px;
    outline: none;
    min-width: 98px;
    font-size: 12px;
    cursor: pointer;
}

.weather-preset-panel select option {
    background: #0a1428;
    color: #fff;
}
