/* 모달 기본 설정 (숨김 상태) */
.av-modal {
    /* display: none; */
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 1000; /* 화면 위에 위치 */
}

/* 모달 콘텐츠 박스 */
.av-modal-content {
    position: absolute;
    /* top: 33%; */
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* 닫기 버튼 */
.av-close {
    position: absolute;
    top: 6px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* 버튼 스타일 */
.av-btn-theme {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.av-btn-theme:hover {
    background-color: #45a049;
}
