:root {
    --main-color: #1e90ff; /* Bleu principal */
    --main-color-hover: #0077B6; /* Bleu foncé */
    --shadow-color: rgba(0, 0, 0, 0.5); /* Ombre */
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow: hidden;
}

header {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 25px;
    background-color: var(--main-color);
    color: white;
    box-shadow: 0 2px 10px 1px black;
}

#logo-left {
    height: 50px;
}

#logo-right {   
    height: 50px;
}

#banner {
    width: 100vw;
    display: none;
}

h1 {
    font-size: 2em;
}

main {
    height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
}

main section {
    position: relative;
    height: calc(100vh - 240px);
    width: calc(100vw - 100px);
    overflow-y: auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px var(--shadow-color);
}

table th, table td {
    border: 1px solid #ddd;
    padding: 0 12px;
    text-align: left;
}

table thead {
    position: sticky;
    background-color: var(--main-color);
    color: white;
    text-transform: uppercase;
}

table tr {
    height: 50px;
    max-height: 50px !important;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: var(--main-color);
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px var(--shadow-color);
}


.highlight {
    font-weight: bold;
}
