/* Flip cards pour les DJ Pink'Tolosa */
.tolosa-dj-flip-card {
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
    width: 100%;
}

.tolosa-dj-flip-card.flipped .tolosa-dj-flip-card-inner {
    transform: rotateY(180deg);
}

.tolosa-dj-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.tolosa-dj-flip-card-front,
.tolosa-dj-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.tolosa-dj-flip-card-front {
    transform: rotateY(0deg);
}

.tolosa-dj-flip-card-back {
    transform: rotateY(180deg);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 1.5rem;
}

/* Scrollbar personnalisée pour la face arrière */
.tolosa-dj-flip-card-back::-webkit-scrollbar {
    width: 6px;
}

.tolosa-dj-flip-card-back::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tolosa-dj-flip-card-back::-webkit-scrollbar-thumb {
    background: rgba(236, 72, 153, 0.5);
    border-radius: 10px;
}

.tolosa-dj-flip-card-back::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 72, 153, 0.7);
}

