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

.panel {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1200;
    min-width: 260px;
    max-width: 360px;

    /* 玻璃拟态 */
    background: rgba(8, 14, 30, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    box-shadow:
        0 8px 36px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 212, 255, 0.06) inset;
    overflow: hidden;
}

.panel code {
    color: #00d4ff;
    font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    font-size: 12px;
}

.panel p {
    font-size: 12px;
    color: rgba(180, 200, 220, 0.85);
    line-height: 1.6;
}

.panel .hint {
    font-size: 11px;
    color: rgba(160, 200, 220, 0.55);
    margin-top: 2px;
}

.overview-fab {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    background: rgba(8, 14, 30, 0.65);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: #00d4ff;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.05) inset;
}

.overview-fab:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 6px 28px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset;
    transform: translateX(-50%) translateY(-2px);
}

.overview-fab:active {
    transform: translateX(-50%) scale(0.96);
}
