body {
    background-color: white;
}

h1 {
    text-align: center;
    font-family: 'Segoe UI';
    margin-bottom: 5px;
    margin-top: 60px;
    font-size: 38px;
}

.subtitle {
    text-align: center;
    margin: auto;
    max-width: 768px;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Segoe UI';
    font-size: 18px;
    color: #707070;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI';
}

ul li {
    float: left;
}

ul li a {
    display: block;
    color: #218CB0;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

ul li a:hover {
    color: black;
    transition: .5s;
}

table, th, td{
    border: 1px solid black;
    border-collapse: collapse;
    padding: 10px;
    margin: auto;
    font-family: 'Segoe UI';
}
table th {
    font-size: 18px;
}

td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
}
td:hover {
    background-color: #e3e3e3;
    transition: 0.5s;
}

section {
    margin-top: 30px;
}

p.state {
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 10px;
}

p.state.empty {
    background-color: #f03232;
}
p.state.in-progress {
    background-color: #e8ba38;
}
p.state.full {
    background-color: #38a7e8;
}
p.state.verified {
    background-color: green;
    color: white;
}


.menu-deroulant {
    width: 300px;
}
.menu-titre {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px;
    color: black;
    border-bottom: 5px;
    border-color: black;

    cursor: pointer;
}
.menu-contenu {
    display: none;
    background-color: #eee;
}
.menu-contenu a {
    display: block;
    padding: 12px 15px;

    color: black;
    text-decoration: none;
}
.menu-contenu a:hover {
    background-color: #ddd;
}