*{
    margin:0;
}

body {
    font-family: "Chivo Mono", monospace;
    width:100%;
    height:100vh;
    margin:0;
    padding:0;
    box-sizing: border-box;
    background-color: #060606;
    color:black;
}

.header
{
    top:0;
    right:0;
    position: fixed;
    box-sizing: border-box;
    margin: 20px;
    z-index:99999;
}

.header h2
{
    font-family: 'Orbitron',sans-serif;
    font-weight: 600;
    font-size:25px;
    color:rgba(255, 255, 255, 0.6);
}

.header h3
{
    font-family: "Chivo Mono", monospace;
    font-weight:500;
    font-size:15px;
    color:rgba(255, 255, 255, 0.4);
    text-align: right;
    margin-top: -5px;
}

.controls
{
    margin: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    box-sizing: border-box;
    background-color: #05050587;
    border-radius: 5px;
    outline: 1px solid rgb(255 255 255 / 10%);
    padding: 20px;
    backdrop-filter: blur(5px);
}

.controls label,select,input
{
    display: block;
    font-family: "Chakra Petch", monospace;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
    background-color: #141414;
    color: rgb(206 206 206);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
    font-size:20px;
}

.controls label
{
    font-size:12px;
    color:grey;
    font-weight:500;
    margin-bottom: 4px;
    border:0;
    padding:0;
    background-color: transparent;
}

.controls select
{
    margin-bottom: 15px;
    outline: transparent;
    margin-bottom: 15px;
    outline: transparent;
    height: 38px;
    display: flex;
    align-items: center;
}

.controls input
{
    margin-bottom: 15px;
    outline: transparent;
    margin-bottom: 15px;
    outline: transparent;
    height: 38px;
    display: flex;
    align-items: center;
}

.controls button
{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color:white;
    background-color: #1b1b1b;
    font-family: "Chakra Petch", monospace;
    font-weight:500;
    font-size:20px;
    text-transform: uppercase;
    padding:10px;
    border-radius:5px;
    margin-bottom: 15px;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
}

.controls button img
{
    width:20px;
    user-select: none;
    pointer-events: none;
}

.controls button span
{
    margin-left:5px;
    margin-right: 5px;
}

.controls button:active
{
    opacity: 0.6;
}

.controls p
{
    font-family: "Chakra Petch", monospace;
    font-weight:600;
    font-size:14px;
    color:grey;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.noise
{
    background-image: url(noise.gif);
    background-size: 300px;
    opacity: 0.1;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index:800;
    cursor: none;
    pointer-events: none;
}

.map {
    width: 100%;
    height:100%;
    box-sizing: border-box;
    background-color: rgb(12 12 12) !important;
}

.custom-tooltip {
    color: white !important; /* Couleur du texte en blanc */
    background-color: transparent !important; /* Fond transparent */
    border: 0 !important; /* Pas de bordure */
    box-shadow: none !important; /* Pas d'ombre */
    font-family: "Chivo Mono" !important;
    font-weight:600 !important;
    font-size:14px !important;
    text-transform: uppercase !important;
    outline: transparent !important;
}

.controls a
{
    font-family: "Chakra Petch", monospace;
    font-weight: 600;
    font-size: 12px;
    color: grey;
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
}

.controls a:hover
{
    text-decoration: underline;
}