/* ====== BOT GENERATOR STYLES ====== */

.bot-gen-modal {
    background: white;
    padding: 30px 24px;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.bot-gen-modal h2 {
    text-align: center;
    margin-bottom: 8px;
}

.bot-actions {
    margin: 20px 0;
}

.bot-divider {
    text-align: center;
    color: var(--text-light);
    margin: 20px 0;
    position: relative;
}

.bot-divider::before,
.bot-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--border-medium);
}

.bot-divider::before { left: 0; }
.bot-divider::after { right: 0; }

.bot-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.bot-action-btn {
    padding: 14px;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.bot-action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.bot-action-btn.danger:hover {
    background: #EF4444;
    border-color: #EF4444;
}

.bot-progress {
    padding: 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.bot-progress-bar {
    height: 8px;
    background: white;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.bot-progress-fill {
    height: 100%;
    background: var(--bg-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

.bot-progress-text {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}
