.calendar-container {
    text-align: center;
    color: var(--color-dark);
    background-color: var(--color-white);
    padding: 20px;
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

.calendar{
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.calendar tbody{
    width: 100%;
}
.calendar tr{
    max-width: 100%;
}
.calendar th,.calendar td {
    text-align: center;
    border: 1px solid #ddd;
    overflow: hidden;
}

.calendar th {
    background-color: #007bff;
    color: white;
}

.calendar td {
    height: 50px;
    cursor: pointer;
}
/*
.calendar td:hover {
    background-color: #f1f1f1;
}*/

.current-day {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
}

.bgblancrouge{
    background-image: url("../images/fondblancrouge.png");
    background-size: 100%;
}
.bgrougeblanc{
    background-image: url("../images/fondrougeblanc.png");
    background-size: 100%;
}
/*
.bgblancrouge:hover, .bgrougeblanc:hover{
    background-color: #f1f1f1 !important;
}*/