.hidden {
    display: none;
}

/* Ajouter des variables pour les couleurs qui seront utilisées dans le plan */
:root {
    --color-bloc-available: #140088;
    --color-unavailable: #888;
    --color-fill-selected: rgb(128, 128, 255);
    --color-stroke-selected: rgb(0, 0, 255);
    --color-pmr: #243e95;
    --color-stroke-unselected: rgb(0, 0, 0);
    --color-stroke-selected-bloc: red;
     --color-minimap-vision-rect: #0000ff7c;
}

/* Le bouton "Retour au stade" */
.goBackButton {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    background: linear-gradient(90deg, #044088 17.89%, #211E5E 84.69%);
    color: white;
    padding: 0.5em 1em;
    transform: skewX(-20deg);
    margin-left: -0.5em;
    cursor: pointer;
}

/* Le menu contextuel qui suit la souris */
.contextWhenHovering {
    position: absolute;
    background-color: white;
    min-width: 150px;
    max-width: 200px;
    z-index: 99999;
    border: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
}

/* Le contenu du menu contextuel */
.contextContent {
    display: flex;
    flex-direction: column;
    border-color: black;
    border-top-style: solid;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 0.2em;
    padding-left: 0.2em;
}

/* Le titre du menu contextuel */
.contextHeader {
    font-size: 1.2rem;
    padding-right: 0.2em;
    padding-left: 0.2em;
}

/* Les éléments du contenu du menu contextuel */
.contextContent>div {
    padding-right: 0.2em;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    display: flex;
    flex-direction: row;
}

.seatDescriptionContextContent {
    font-size: 0.8rem;
}

/* La couleur qui apparait avant le le nom de la catégorie et le tarif lors du survol d'un bloc */
.colorBeforeCateg {
    min-width: 0.5em;
    max-width: 0.5em;
    border-radius: 10%;
    margin-right: 0.2em;
}

/* Les informations PMR affichées dans le context */
.pmrInfoOnContex {
    align-items: center;
    color: white;
}

/* Les informations sur les tarifs des catégories dans le menu contextuel */
.contextCategories {
    color: black;
    display: flex;
    flex-direction: column;
}

/* Les éléments où l'on veut que la souris soit un pointer */
.clickable {
    cursor: pointer;
}

.minimap {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    color: white;
    padding: 0.5em 1em;
    cursor: default;
}


.hiddenContext {
    visibility: hidden;
}