/* /home/rich/oxxoox/static/css/modal.css */

/* ============================================
   MODAL OVERLAY
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--gap-md);
}

.modal {
    background: var(--void);
    border: 1px solid var(--border);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
}

.modal-header {
    padding: var(--gap-lg);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: var(--gap-xl);
}

.modal-footer {
    padding: var(--gap-lg);
    border-top: 1px solid var(--border);
    display: flex;
    gap: var(--gap-md);
    justify-content: flex-end;
}

/* ============================================
   CONFIRMATION MODAL
   ============================================ */

.confirm-modal .modal {
    max-width: 400px;
}

.confirm-message {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: var(--gap-lg);
}

.confirm-warning {
    color: #FF6B35;
    font-weight: 700;
}
