/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 10;
}

.footer-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap; /* permet aux boutons de passer à la ligne si nécessaire */
}

.footer-button {
    background: #2b2b2b;
    border: 1px solid #444;
    color: #fff;
    font-size: 20px; /* icône plus visible */
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.footer-button:hover {
    background: #00bfff;
    color: #000;
}

/* Menu flottant */
.menu {
    position: fixed;
    display: none;
    background: #2b2b2b;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 4px;
    z-index: 9999; /* plus haut que le header */
    min-width: 180px;
}


.menu h3 {
    background: #00bfff;
    color: #000;
    padding: 4px 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 14px;
}

.menu label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: #e0e0e0;
}

.menu input {
    width: 80px;
    background: #1a1a1a;
    border: 1px solid #555;
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
}

/* --- MOBILE --- */
@media screen and (max-width: 480px) {
    .footer-button {
        font-size: 16px; /* plus petit pour tenir sur l’écran */
        padding: 4px 6px;
    }

    .footer-bar {
        gap: 4px;
    }

    .menu {
        min-width: 140px; /* menu plus compact */
        padding: 6px;
    }

    .menu input {
        width: 60px; /* input plus petit */
        font-size: 12px;
    }

    .menu h3 {
        font-size: 12px;
        padding: 2px 4px;
    }

    .menu label {
        font-size: 11px;
    }
}
