.video-popup-modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Ensure it's on top of all content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-popup-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
}

.video-container iframe {
    width: 100%;
    height: 450px;
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.video-popup-btn {
    cursor: pointer;
    background: none;
    border: none;
}

.video-popup-btn img {
    width: 50px;
}

.video-popup-container {
    text-align: center; /* Default alignment */
}

.video-popup-container.align-left {
    text-align: left;
}

.video-popup-container.align-right {
    text-align: right;
}

.video-popup-container.align-center {
    text-align: center;
}
