* {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.title {
    color: #f7f8fa;
}

li {
    display: inline;
}

header {
    background-color: #007bff;
    color: #f7f8fa;
    padding-bottom: 12px;
    padding-top: 12px;
    position: relative;
}

.wallet {
    position: absolute;
    top: 12px; 
    right: 20px; 
    background-color: #ffffff;
    color: #007bff; 
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: right;
    transition: background-color 0.3s ease, transform 0.3s ease; 
}

.wallet:hover {
    background-color: #f7f8fa; 
    transform: translateY(-2px);
}

.wallet:active {
    background-color: #d8dde9; 
    transform: translateY(0); 
}

.onglets {
    color: #f7f8fa;
    text-decoration: none;
    padding: 12px 86px;
    font-size: x-large;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.onglets:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #0556b3;
    color: gold;
}

.onglets:active {
    background-color: #003f7f;
    transform: translateY(0); 
}

body {
    background-color: #f7f8fa;
}

table {
    width: 100%;
}

th {
    background-color: gold;
}

tr:hover {
    background-color: #f1f1f1;
}

td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-sites tr {
    cursor: pointer;
}

.table-sites tr:hover {
    transform: translateY(-2px);
}

.table-sites tr:active {
    background-color: #d8dde9; 
    transform: translateY(0); 
}

.gras {
    font-weight: bold;
}

.content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.error {
    max-width: 1000px; 
    margin: 50px auto; 
    padding: 20px;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    color: red
}

.success {
    max-width: 1000px; 
    margin: 50px auto; 
    padding: 20px;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: green;
}

/* Titres */
h1, h2, h3 {
    font-family: "Merriweather", serif; 
    margin-bottom: 20px;
    color: #2c3e50; 
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

p {
    margin-bottom: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input[type="submit"]{
    background-color: #007bff;
    color: #f7f8fa; 
    font-size: 18px; 
    padding: 12px 30px;
    border: none; 
    border-radius: 8px;
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

input[type="submit"]:hover{
    background-color: #0056b3; 
    transform: translateY(-2px);
}

input[type="submit"]:active{
    background-color: #003f7f; 
    transform: translateY(0); 
}

/* Citations */
blockquote {
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #3498db;
    color: #555;
}


ul, ol {
    margin: 20px 0;
    padding-left: 40px;
}


footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
}

.footer_liens {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer_company {
    margin-top: 10px;
    font-weight: bold;
}
	