@font-face {
    font-family: 'Pixel';
    src: url('ressources/Pixel.ttf');
}
.blocConnexion {
    position: fixed;
    right: 50px;
    cursor: pointer;
}
.iconConnecter {
    position: fixed;
    right: 20px;
}
.boutonConnecter {
    font-size: 1.5em;
    border: solid 1px black;
    border-radius: 25px;
    box-shadow: 0px 0px 12px 1px #33B0F8;
    display: block;
    width: 155px;
    text-align: center;
    background-color: #12263A;
}
a, button {
    text-decoration: none;
}
img {
    border: solid 3px #FFE872;
}
.logo, .message, .choix {
    text-align: center;
    margin-bottom: 10px;
}
.choix, .message, .prenom, select {
    font-family: 'Pixel';
}
.calendrier {
    margin-top:15px;
}
.semaine1 {
    display: flex;
    justify-content: center;
}
.case {
    border: solid 1px #12263A;
    border-radius: 25px;
    width: 180px;
    height: 210px;
    margin: 5px;
    cursor: pointer;
}
.case.desactivee {
    position: relative;
    color: red;
}

.case.desactivee::before {
    content: '✖'; /* Le caractère pour la croix */
    font-size: 200px;
    color: red;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centre parfaitement la croix */
}
.jour {
    text-align: center;
    height: 25px;
    align-content: center;
    border-bottom: solid 1px black;
    border-radius: 23px 23px 0px 0px;
    background-color: #12263A;
    color: white;
}
.prenom {
    margin-top: 3px;
    text-align: center;
}

@media screen and (max-width: 500px) {
    img {
        width: 200px;
    }
    .boutonConnecter {
        display: none;
    }
    .semaine1 {
        display: block;
        text-align: -webkit-center;
    }
}
@media screen and (min-width: 501px) {
    .iconConnecter {
        display: none;
    }
}


body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; 
    letter-spacing: 0.6px;
}
select {
    margin-top: 10px;
    margin-bottom: 10px;
    appearance: none;
    width: 200px;
    height: 30px;
    border-radius: 20px;
    border: solid 2px #12263A;
    box-shadow: 0px 0px 12px 1px #33B0F8;
    padding-left: 63px;
    cursor: pointer;
}  
select:hover, .connecter:hover {
    background-color: #EE18A0;
}