/* 팝업 배경 */
.popup {
    display: none; /* 기본적으로 숨기기 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 팝업 내용 */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 메시지 스타일 */
.popup-message {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 버튼 스타일 */
.popup-button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-button:hover {
    background-color: #0056b3;
}

/* X 버튼 (닫기 버튼) 스타일 */
.popup-close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #aaa;
    cursor: pointer;
}

.popup-close-button:hover {
    color: #000;
}