#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    z-index: 9999; /* ⭐ 팝업이 가장 위로 오게 설정 */
}

/* 배경이 있는 경우, 팝업보다 낮은 z-index 설정 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 반투명 배경 추가 */
    z-index: 9998;
    display: none;
}

body.popup-active::before {
    display: block;
}
