body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 50px;
}

h1 {
    color: white;
    margin-bottom: 40px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: inline-block;
    margin: 10px 20px;
}

a {
    text-decoration: none;
    color: white;
    background-color: #cf2e2e;
    padding: 7px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a:hover {
    background-color: #b02422;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Styles pour .logo-container */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Styles pour .logo-container img */
.logo-container img {
    max-width: 16%; /* Ajustez cette valeur pour contrôler la taille du logo */
    height: auto;
}

.salutation-info {
    position: fixed;
    top: 10px;
    left: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

.salutation-text, .username, .license-key {
    color: white;
}

.username {
    font-weight: bold;
    color: red;
}

.datetime-info, .license-info {
    position: fixed;
    bottom: 10px;
    color: #33FF33;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

.datetime-info {
    left: 10px;
}

.license-info {
    right: 10px;
}

.logout-container {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1000;
}

.logout-button, .return-button {
    padding: 7px 15px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.logout-button:hover, .return-button:hover {
    background-color: #c0392b;
}

/* Réponse aux variations de taille d'écran */
@media screen and (max-width: 768px) {
    body {
        padding: 20px;
    }

    h1 {
        font-size: 20px; /* Taille de texte réduite pour les petits écrans */
    }

    a, .logout-button, .return-button {
        padding: 7px 15px; /* Adaptation du padding */
        font-size: 10px; /* Augmentation de la taille de la police pour une meilleure lisibilité */
    }

    .logo-container img {
        max-width: 50%; /* Ajustement de la taille du logo pour les petits écrans */
    }

    .salutation-info, .datetime-info, .license-info {
        font-size: 12px; /* Réduction de la taille de la police pour les informations fixes */
    }
}
