/*.cardCsn {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 300px;*/ /* Set a specific height */
/*display: flex;
    align-items: center;
    justify-content: center;
}

    .cardCsn:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }

.play-button {
    position: absolute;
    bottom: 10px;*/ /* Position the button at the bottom */
/*left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cardCsn:hover .play-button {
    opacity: 1;
    animation: bounce 0.5s infinite ease-in-out;
}

.cardCsn img {
    max-width: 100%;
    max-height: 100%;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}*/


.cardCsn {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border: 2px solid #313131;
    border-radius:25px;
}

    .cardCsn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.play-button {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
    background-color: #ffffffd9; /* Semi-transparent white */
    border-radius: 50%;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*  .play-button img {
        width: 60px; 
       height: 60px;
    } */

.cardCsn:hover .play-button {
    opacity: 1;
    animation: bounce 0.5s infinite ease-in-out;
}

/*.cardCsn:hover {
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.7);*/ /* White shadow */
/*}*/

/* Add bounce animation for shadow on hover */
.cardCsn:hover {
    animation: bounceShadow 1.6s ease-in-out infinite;
}

.btn-mini {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.2rem !important;
}
/* Keyframes for the bounce animation */
@keyframes bounceShadow {
    0%, 100% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7); /* Small shadow */
    }

    50% {
        box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.7); /* Large shadow */
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
