/* Custom prompt modal (no Kendo) */
.custom-prompt-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.custom-prompt-dialog {
    background: var(--bg-primary);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    min-width: 320px;
    max-width: 100%;
}

.custom-prompt-header {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background-color: var(--blueteq-blue);
    border-bottom: 1px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
}

.custom-prompt-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custom-prompt-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
