@CHARSET "UTF-8";
/*
body { min-width: 1190px; }

._header { overflow: hidden; background: white;}
._content { overflow: hidden; background: white;}
._footer { overflow: hidden; }
*/

#popup-wrapper {
    position: fixed; /* 화면에 고정 */
    top: 100px;
    left: 100px;
    width: 100%;
/*     height: 100%; */
/*     background-color: rgba(0, 0, 0, 0.5); 반투명 배경 */
/*     display: flex; 팝업을 중앙에 위치시키기 위한 설정 */
/*     justify-content: center; */
/*     align-items: center; */
    z-index: 1000; /* 다른 요소들 위에 표시 */
}

#popup-content {
	pointer-events: auto;
	
    width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#popup-footer {
    margin-top: 20px;
}

#popup-footer button {
    padding: 8px 15px;
    cursor: pointer;
}
