html {
    width: 1920px;
    height: 1359px;
}

body {
    background-color: #ffffff;
    background-image: url('bg.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 30px auto;
    width: 1400px;
    height: 100%;
    min-height: 1100px;
    font-family: 'Roboto', sans-serif;
    user-select: none;
    -webkit-user-drag: none;
    overflow: auto;
    background-attachment: local;
}

img {
    -webkit-user-drag: none;
}

.table-container {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}

.bouton-container {
    position: absolute;
    top: 20px;
    right: 40px;
}

.number-cell {
    border: 1px dashed #000;
    font-size: 10px;
    font-weight: 600;
    background-color: rgb(255 255 255 / 50%);
}

.red-cell {
    color: #c10302;
}

.blue-cell {
    color: #1f4789;
}

.default-cell {
    background-color: rgb(255 255 255 / 70%);
}

.empty-cell {
    background-color: transparent;
    border: 1px solid rgb(204 204 204 / 8%);
}

.color-cell {
    background: #ffffff;
}

.black-cell {
    background: #000000;
}

.round:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: orange;
    margin: auto;
    border-radius: 30px;
}

table {
    font-size: 12px;
    background-color: transparent;
    background-image: url(map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -5px 2px;
    padding: 10px 10px 50px 16px;
}

td {
    text-align: center;
    border: solid 0.5px #000;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    max-width: 12px;
    max-height: 12px;
}

hr {
    margin: 10px 0;
    border-top: 0;
    border-bottom: 1px solid #898989;
}

.header-container {
    position: relative;
    max-width: 900px;
    margin: 20px auto;
}

.header-container .img-title {
    width: 766px;
    height: 156px;
}

.header-container .img-logo {
    position: absolute;
    right: -100px;
    bottom: 0px;
}

.footer-container {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.footer-container p {
    font-size: 18px;
    line-height: 18px;
    margin: 0;
    font-weight: bold;
    color: #0e0e0e;
}

.action-container {
    padding: 10px;
    width: 45%;
    background-color: rgb(255 255 255 / 70%);
}

.text-input {
    display: block;
    width: 100%;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    border: 1px solid #000;
    margin-bottom: 5px;
    box-sizing: border-box;
    text-transform: uppercase;
    border-radius: 3px;
}

.text-input:hover {
    border-width: 2px;
}

.text-input[disabled]:hover {
    border-width: 1px;
}

.input-wrapper {
    margin-bottom: 15px;
}

.input-wrapper p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 3px;
}

.bouton-wrapper {
    margin: 0 0 10px 0;
}

.text-button {
    background: #000759;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
}

.text-button[disabled] {
    background: #8b8b8b;
}

.text-button:hover {
    background: #000;
}

.text-button[disabled]:hover {
    background: #8b8b8b;
}

.action-button {
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #000;
    padding: 5px 10px;
    min-width: 125px;
    border-radius: 30px;
}

.action-button.active-button {
    color: #979797;
    border-color: #979797;
}

.action-button:before {
    font-family: 'Material Symbols Outlined';
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
    vertical-align: bottom;
    color: #000;
}

.text-button:before {
    font-family: 'Material Symbols Outlined';
    content: '\e5ca';
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
    vertical-align: bottom;
    color: #fff;
}

.action-button.active-button:before {
    color: #979797;
}

.action-button:not(.active-button):hover {
    color: #979797;
    border-color: #979797;
}

.action-button.horizontal-button {
    margin-right: 5px;
}

.img-copyright {
    position: absolute;
    bottom: 50px;
    right: 0;
}

.horizontal-button:before {
    content: '\e5cc';
}

.vertical-button:before {
    content: '\e5cf';
}

.hidden-input {
    display: none;
}

.highlighted {
    background: #dfe2e4;
}

.scroller {
    height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    margin-top: 50px;
}

.scroller::-webkit-scrollbar {
    width: 8px;
}

.scroller::-webkit-scrollbar-track {
    background-color: #f9f9f9;
}

.scroller::-webkit-scrollbar-thumb {
    background-color: #000000;
}