body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: black;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
    padding-top: 2em;

}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 700;
    color: yellowgreen;
}
h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    text-decoration: underline;
}
.button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:active {
    background-color: #004085;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f2f2f2;
    border-top: 1px solid #e5e5e5;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;

}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

table a {
    color: #007BFF;
    text-decoration: none;
}

table a:hover {
    color: #0056b3;
    text-decoration: underline;
}
table td a {
    display: inline;
}
.action-links {
    white-space: nowrap;
}
td {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
}
form {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
}

.arrow-link::before {
    display: inline-block;
    border: solid 5px transparent;
    content: '';
}

.arrow-link.up::before {
    border-bottom: solid 5px black;
    border-top: none;
}

.arrow-link.down::before {
    border-top: solid 5px black;
    border-bottom: none;
}


/* Responsive design pour les écrans jusqu'à 768px */
@media screen and (max-width: 768px) {
    .container {
        padding: 1em;
        padding-top: 1.5em;
    }

    h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .button {
        font-size: 14px;
        padding: 8px 16px;
        margin: 4px;
    }



}
