/* ===========================
   AegisDrive File Manager CSS
   =========================== */

:root {
    --ad-accent: #00ffb2;
    --ad-bg: #0f1828;
}

/* Menu contestuale (right click + long press) */
.ad-context-menu {
    position: fixed;
    background: #1a2336;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 6px 0;
    width: 180px;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    animation: fadeIn .15s ease-out;
}

.ad-context-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    color: white;
    font-size: 14px;
    background: none;
    border: none;
}

.ad-context-menu button:hover {
    background: rgba(255,255,255,.08);
}

/* Overlay per disattivare la pagina */
.ad-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 9998;
    display: none;
}

/* Animazione */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95);}
    to   { opacity: 1; transform: scale(1);}
}
