    .yt-grid-jednalinia {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; 
        padding: 20px;
    }   
    .yt-containerjednalinia-jednalinia {
        position: relative;
        width: 100%;
        max-width: 500px; 
        margin: 0 auto; 
        aspect-ratio: 16 / 9; 
        overflow: hidden;
        border-radius: 10px; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        background: black;
    }    
    .yt-video-jednalinia {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    .yt-thumbnail-jednalinia {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }
    .yt-play-button-jednalinia {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        color: white;
    }
    .yt-title-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        text-align: center;
        padding: 5px;
        font-size: 14px;
        font-weight: bold;
    }
