body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    /* Fond sombre */
    color: #cccccc;
    /* Texte clair pour contraste */
}

header {
    background-color: #ff6600;
    /* Orange vif pour le header */
    color: #ffffff;
    /* Texte blanc pour contraste */
    padding: 0.3em;
    text-align: center;
}

nav {
    background-color: #282828;
    /* Gris très foncé pour la navbar */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
}

a {
    display: block;
    color: #ffffff;
    /* Texte blanc pour les liens */
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
}

a:hover {
    background-color: #444444;
    /* Gris foncé pour le survol */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #282828;
    /* Couleur du fond du menu déroulant */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c2c2c;
    /* Gris foncé pour le contenu */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1,
h2 {
    color: #ff6600;
    /* Orange vif pour les titres */
    border-bottom: 2px solid #ff6600;
    /* Ligne sous le titre */
    padding-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #cccccc;
    /* Texte gris clair pour les paragraphes */
}

#logs-container {
    margin: 20px auto;
    width: 90%;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #555;
}

table th {
    background-color: #ff6600;
}

table tr:nth-child(even) {
    background-color: #444;
}

table tr:nth-child(odd) {
    background-color: #555;
}

button {
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #990000;
}

form {
    margin-top: 20px;
    text-align: center;
}

input[type="text"] {
    padding: 8px;
    margin: 10px 0;
    width: 60%;
    background-color: #444;
    color: #ccc;
    border: none;
    border-radius: 5px;
}

input[type="text"]:focus {
    outline: none;
    background-color: #555;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #cc5200;
}

.logout-btn {
    color: #fff;
    text-decoration: none;
    background-color: #cc0000;
    padding: 5px 10px;
    border-radius: 5px;
}

.logout-btn:hover {
    background-color: #990000;
}

#sticky-footer {
    background-color: #282828;
    /* Gris très foncé pour le footer */
    color: #ffffff;
    /* Texte blanc */
    text-align: center;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 2px solid #444444;
}

a.mail {
    color: #ffffff;
}

.logo img {
    width: 50px;
    height: auto;
}

blockquote {
    margin: 0 auto;
    max-width: 540px;
    text-align: center;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #333;
    color: #eee;
    padding: 10px;
    border-radius: 5px;
}

/* Responsive design */
@media (max-width: 768px) {

    table th,
    table td {
        font-size: 12px;
    }

    input[type="text"] {
        width: 80%;
    }

    button[type="submit"],
    button {
        width: 80%;
    }
}