#video-modal-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10000;
    background: #222;
    border-radius: 8px;
    box-shadow: 0 0 20px black;
    padding: 0;
    width: auto;
    max-width: 100vw;
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

#video-modal-header {
    background: #444;
    color: white;
    font-size: 0.875rem; /* 14px */
    padding: 4px 8px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28px;
    width: 100%;
    box-sizing: border-box;
}

#video-modal-header span {
    font-size: 1rem; /* 16px */
    cursor: pointer;
}

#video-modal-overlay {
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    border-radius: 0 0 12px 12px;
    display: block;
}
