@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #1a1a1a;
    color: #f1f1f1;
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #3498db;
}

/* Utilitaires */
.error {
    background: #c0392b;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    text-align: center;
}

.btn-staff, .btn-login, button[type="submit"] {
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

button:hover {
    filter: brightness(1.2);
}

/* Statuts de connexion */
.avatar-online { filter: drop-shadow(0 0 8px #2ecc71); }
.avatar-offline { filter: grayscale(1); opacity: 0.6; }