/**
 * Feuille de style pour la vue cartes
 *
 * @author Aurélien Monnat
 * @since 03.06.2024
 */

.tier {
    background-color: rgba(10, 20, 30, 0.2);
    border-radius: 50px;
    width: 90%;
    margin: 25px auto;
    padding: 3px 25px 25px;
}

iframe {
    width: 70%;
    height: 300px;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    border: none;
}

.ytb {
    width: 100%;
    height: auto;
    text-align: center;
}

.pdf {
    margin-bottom: 15px;
    margin-left: 10px;
}

a.regles {
    color: blue;
    line-height: 35px;
}

a.regles:hover {
    text-decoration: underline;
    color: rgb(0 101 141);
}

.telechargement {
    background-color: rgb(210, 210, 210);
    border: 1px solid black;
    border-radius: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.telechargement:hover {
    background-color: darkgray;
}

#map {
    width: 100%;
    height: 50vh;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    border: white 1px solid;
}


#sets {
    list-style-type: none; /* Enlève les puces par défaut */
    padding-left: 0;
}

#sets li {
    background-repeat: no-repeat;
    background-position: 0 50%; /* Positionnement de l'image */
    padding-left: 1.5em; /* Espace pour l'image */
    margin-bottom: 0.5em; /* Espace entre les éléments de la liste */
}


