body {
    font-family: sans-serif;
}

.cursor-pointer {
    cursor: pointer;
}

.card-container {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.card {
    max-width: 700px;
    text-align: center;
}

.card header::first-letter {
    text-transform: capitalize;
}

.card p {
    text-align: justify;
    margin-top:1rem;
}

.card img {
    max-width:250px;
    border-radius: 5px;
    margin-top:5%;
    margin-bottom:5%;
}

.navigation {
    text-align: center;
}

#toggle-container {
    text-align: center;
}

.btn-like {
    background-color:rgb(0, 204, 136);
    border: none;
}

.btn-dislike {
    background-color:rgb(238, 64, 46);
    border: none;
}

.btn-maybe {
    background-color:rgb(104, 120, 153);
    border:none;
}

.unselected {
    background-color: #000 !important;
    font-size: 0.8rem;
}

.sortable-ghost {
    opacity: 0.4;
    background-color: #f0f0f0;
}

.no-photo {
    width:250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    vertical-align: middle;
    text-align: center;
    border-radius: 5px;
    margin: 5vh auto;
    font-size: 0.8rem;
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center;     /* Centre verticalement */
}