html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Espace entre header et footer */
}

header {
    background-color: #343a40;
    color: white;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto; /* Colle le footer en bas */
}

.card-disable{
    opacity: 0.4;
}
.reserved-banner {
    position: absolute;
    top: 33%;
    left: 15%;
    background: rgba(76, 155, 76, 0.788);
    color: white;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: bold;
    transform: rotate(336deg);
    transform-origin: center;
    z-index: 10;
    width: 160px;
    text-align: center;
}

.item_image{
    max-height: 275px;
    width: 65px;
    height: auto;
}

.cursor{
    cursor: pointer;
}

.flexV{
    flex-direction:column;
}