.ai-popup {
    position: absolute;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    padding: 1rem;
    z-index: 50;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ai-popup-header {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.ai-popup input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.875rem;
}

.ai-popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.ai-popup-buttons button {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}
