.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Background for visibility */
    border-radius: 50%; /* Circular play button */
    padding: 20px;
    cursor: pointer;
}

.imgSize {
    position: relative; /* This ensures the play icon is positioned relative to the image */
}

.play-icon-thumbnail {
    position: absolute;
    top: 33%;
    left: 90%;
    transform: translate(-50%, -50%);
    font-size: 21px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
}

.profile-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.8);
    }
    .modal-content {
        margin: auto;
        display: block;
        max-width: 80%;
        height: auto;
    }
    .close {
        position: absolute;
        top: 50px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }
