/* 기본 스타일 */
body {
    font-family: Arial, sans-serif;
}

/* 모달 창 스타일 */
.modal {
    display: none; /* 처음에는 모달을 숨김 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* 모달 컨텐츠 스타일 */
.modal-content {
    background-color: #fefefe;
    margin: 200px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px; /* 모달 창 최대 너비 */
    position: relative;
    text-align: center;
}

/* 닫기 버튼 스타일 */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* 비디오 스타일 */
video {
    width: 100%;
    height: auto;
}

.cctv-button {
    margin: 10px 0;
}