/* اضافه کردن این استایل‌ها به فایل CSS موجود */
.ctb-bot-creation {
    max-width: 800px;
    margin: 0 auto;
}

.ctb-form-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5aa0;
}

.ctb-form-section h3 {
    margin-top: 0;
    color: #2c5aa0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.ctb-warning-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.strategy-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.preview-step {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border-left: 3px solid #28a745;
}

.preview-total {
    grid-column: 1 / -1;
    background: #2c5aa0;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
}

.ctb-btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bot-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5aa0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.bot-name {
    margin: 0 0 5px 0;
    color: #2c5aa0;
    font-size: 18px;
}

.bot-pair {
    background: #e7f3ff;
    color: #2c5aa0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.bot-details {
    margin: 15px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    color: #666;
    font-size: 13px;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

.ctb-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.ctb-btn-success {
    background: #28a745;
    color: white;
}

.ctb-btn-warning {
    background: #ffc107;
    color: #212529;
}

.ctb-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}