/**
 * Modal Component System
 */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-overlay, rgba(0, 0, 0, 0.5));
    z-index: var(--z-index-modal-backdrop, 1040);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg-primary, #fff);
    border-radius: var(--radius-lg, 0.75rem);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-index-modal, 1050);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-neutral-200, #e9ecef);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-neutral-200, #e9ecef);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
