
.modal_overlay {
    align-items: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.modal_box {
    background: #0d1530;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0,180,255,0.15);
    max-width: 480px;
    overflow: hidden;
    padding: 0;
    width: 90%;
}

.modal_header {
    background: linear-gradient(90deg, #0d2040 0%, #102448 100%);
    border-bottom: 2px solid var(--theme-secondary);
    color: var(--theme-primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 16px;
    text-transform: uppercase;
}

.modal_body { padding: 20px 16px; }
.modal_footer {
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 12px 16px;
}
        