.row { margin-bottom: 15px; text-align: left; }
.links { margin-top: 20px; font-size: 14px; display: flex; justify-content: space-between; }
.links a { text-decoration: none; color: #007bff; cursor: pointer; }
.links a:hover { text-decoration: underline; }
h2 { margin-top: 0; color: #333; }
/* 모달 내부 스타일 */
.modal-content { padding: 20px; }

/* 1. 뒷배경 (Overlay) */
.overlay {
    display: none; /* 기본 숨김 */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 반투명 검정 */
    z-index: 999;
}

/* 2. 떠 있는 창 (Floating Div) */
.floating-box {
    display: none; /* 기본 숨김 */
    position: fixed;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); /* 정확한 정중앙 배치 */
    
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px; /* 둥근 모서리 */
    
    /* [핵심] 그림자로 떠 있는 효과 */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); 
    z-index: 1000;
    text-align: center;
}
