body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #2A9D8F;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    background: #2c3e50; /* Couleur de fond plus douce et moderne */
    color: white;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    font-family: Arial, sans-serif; /* Police lisible */
}

#navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#navigation > ul > li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

#navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; /* Fond blanc pour les sous-menus */
    border: 1px solid #ddd; /* Bordure plus subtile */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère pour un effet de profondeur */
}

#navigation ul li:hover > ul {
    display: block;
}

#navigation a {
    text-decoration: none;
    color: #fff; /* Texte blanc pour les liens principaux */
    padding: 8px 15px; /* Espacement amélioré */
    display: block;
    transition: background-color 0.3s ease; /* Transition fluide */
}

#navigation a:hover {
    background-color: #3498db6f; /* Bleu clair pour le survol */
    color: #fff; /* Texte blanc pour le survol */
}

#navigation ul ul a {
    color: #333; /* Texte sombre pour les sous-menus */
}

#navigation ul ul a:hover {
    background-color: #f1f1f1; /* Fond gris clair pour le survol des sous-menus */
    color: #333; /* Texte sombre pour le survol des sous-menus */
}

.container {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

h2 {
    color: #2c3e50;
}

.shortcuts {
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 0.8rem;
    text-align: left;
}

th {
    background-color: #e1e1e1;
    color: #2980b9;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

td:first-child {
    font-weight: bold;
    color: #2c3e50; /* Couleur pour les raccourcis */
}

td:nth-child(2) {
    color: #333; /* Couleur pour les descriptions */
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Style footer links */
footer a {
    color: green;
    text-decoration: underline; /* Optional: adds underline for better visibility */
}

/* Optional hover effect for footer links */
footer a:hover {
    color: darkgreen; /* Slightly darker green on hover for better feedback */
}

.sticky-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0078d7;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.sticky-nav:hover {
    background-color: #005bb5;
}