/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 24px;
    cursor: pointer;
    color: #A31D1D;
}

video {
    width: 100%;
    height: auto;
    cursor: pointer;
}