.calendrier_content {
    /* align-items: center;
    justify-content: center; */
   
    margin-bottom: 20px;
}

.day_calendar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 100%;
    margin: 0px 10px;
}

.span_day_calendar {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #0F275C;
    background-color: #FFF;
}

.span_day_calendar.selected, .span_day_calendar:hover {
    background-color: #0F275C;
    color: white;
}

.calendar {
    width: 90%;
    min-width: 800px;
    max-width: 100%;
    margin-top: 50px;
    padding: 25px;
    border: 1px solid #0F275C;
    position: relative;
}

.calendar_title {
    width: fit-content;
    top: -1em;
    left: 3%;
    background-color: #EBEBEB;
    position: absolute;
}

.calendar_title span {
    font-size: 28px;
}

.bar_details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 850px;
    margin-top: 10px;
    padding-top: 5%;
    background-color: rgba(255, 255, 255, 0.125);
}

.span_status {
    padding: 3px 25px;
}

.span_team {
    font-size: 24px;
    font-weight: 200;
    color: #0F275C;
}

.bientot {
    background-color: #F0C018;
}

.en_cours {
    background-color: limegreen;
}

.termine {
    background-color: rgb(75, 75, 75);
    color: white;
}

.spectator_container {
    height: 100%;
}

.encounter_spectator {
    justify-content: center;
    width: 100%;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.325);
    transition: height 3s ease-in-out;
}

.score_global {
    margin-bottom: 20px;
}
