.youtube-live-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.youtube-video {
    flex: 0 0 70%;
    width: 70%;
    height: 450px;
}

.youtube-chat {
    flex: 0 0 30%;
    width: 30%;
    height: 450px;
}


.youtube-link-flash a{
	font-size: var(--e-global-typography-1d5fd42-font-size);
    font-weight: var(--e-global-typography-1d5fd42-font-weight);
    text-transform: var(--e-global-typography-1d5fd42-text-transform);
    line-height: var(--e-global-typography-1d5fd42-line-height);
    letter-spacing: var(--e-global-typography-1d5fd42-letter-spacing);
    word-spacing: var(--e-global-typography-1d5fd42-word-spacing);
    border: 2px solid #ff0000; /* Czerwona ramka */
    padding: 10px;
    display: inline-block;
    animation: flashAnimation 1s infinite;
}

@keyframes flashAnimation {
    0% { border-color: #ff0000; }
    50% { border-color: transparent; }
    100% { border-color: #ff0000; }
}

@media screen and (max-width: 768px) {
    .youtube-live-container {
        flex-direction: column;
    }

    .youtube-video, .youtube-chat {
        flex: 0 0 100%;
        width: 100%;
    }

    .youtube-chat {
        height: 300px; /* Możesz dostosować wysokość dla urządzeń mobilnych */
    }
}
