/* ======================================================
   DRONE OPS GAE — main.css
   Dashboard grid principal, colonnes, footer, cookie banner
   ====================================================== */

/* --- DASHBOARD : GRILLE 3 COLONNES --- */
.dashboard {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
    gap: 10px;
    padding: 10px;
    height: calc(100vh - var(--header-h) - var(--toolbar-h) - var(--footer-h));
    overflow: visible;
}

/* --- COLONNES --- */
.map-panel,
.col-center,
.ops-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    overflow: hidden;
}

/* --- FOOTER --- */
.ops-footer {
    height: var(--footer-h);
    background: var(--footer-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.65rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.ops-footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.ops-footer a:hover {
    color: var(--accent);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: var(--footer-h);
    left: 0;
    right: 0;
    background: var(--panel-alt);
    border-top: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 500;
    font-size: 0.75rem;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-buttons button {
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.15s;
}

.cookie-buttons button:hover {
    background: var(--accent);
    color: #fff;
}

/* --- PANEL MOBILE (caché par défaut) --- */
#mobilePanel {
    display: none;
}
