.privacy-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.privacy-modal-content {
    background: #fff;
    width: 310px;
    max-width: 90vw;
    padding: 15px 0;
    border-radius: 8px;
    text-align: left;
    font-size: 0.75rem;
    box-sizing: border-box;
}

.privacy-modal-content h3 {
    font-size: 1rem;
    margin: 0 20px 12px 20px;
    font-weight: 600;
}

/* 구분선: 모달 좌우 끝까지 닿도록 */
.modal-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 0;
}

.privacy-modal-content p {
    margin: 16px 20px;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 16px 0 16px;
}

.modal-actions label {
    font-size: 0.7rem;
}

.modal-actions button {
    background: none;
    border: none;
    color: #db63c6;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
}

.modal-actions label input[type="checkbox"] {
    position: relative;
    top: 2.5px;
}

.modal-actions button:hover {
    text-decoration: underline;
}

/* 반응형 모바일 */
@media (max-width: 200px) {
    .privacy-modal-content {
        width: 90vw;
        padding: 12px 15px;
        font-size: 0.7rem;
    }
}