/* Video playback modal */
#videoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

#videoModalOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#videoModalContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    max-width: 80vw;
    max-height: 80vh;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

#videoModalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #521945;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

#videoModalHeader button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
}

#videoModalHeader button:hover {
    opacity: 0.7;
}

#videoModalPlayer {
    display: block;
    max-width: 80vw;
    max-height: calc(80vh - 44px);
}
