/* themore 모달 유틸 CSS */
.mu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}
.mu-box {
    background: #fff;
    border-radius: 12px;
    min-width: 280px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: muFadeIn 0.15s ease;
}
@keyframes muFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
.mu-body {
    padding: 24px 20px 16px;
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    white-space: pre-wrap;
}
.mu-footer {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    justify-content: flex-end;
}
.mu-btn-cancel {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.mu-btn-cancel:hover { background: #f0f0f0; }
.mu-btn-confirm {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background: #9B7B4E;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.mu-btn-confirm:hover { background: #8B6D3F; }
