/* css/style_global.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Fond sombre général */
    color: #e0e0e0;
}

/* Navigation */
nav {
    background-color: #1e1e1e;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

nav a {
    color: #bb86fc;
    text-decoration: none;
    font-size: 0.9em;
    margin-left: 10px;
}

nav a:hover {
    text-decoration: underline;
}

.logo {
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

/* Boutons d'action génériques */
.btn-action {
    display: block;
    width: 100%;
    text-align: center;
    background: #333;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
    color: #ccc;
    text-decoration: none;
    border: 1px solid #444;
    box-sizing: border-box;
    transition: background 0.2s;
}

.btn-action:hover {
    background: #444;
    color: white;
}

/* Toast (Message temporaire) */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: none;
    z-index: 1000;
}