/* ==================== Bourse AI Pro - Final Clean Style ==================== */
.baipro-app { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 15px; 
    font-family: Vazirmatn, Tahoma, sans-serif; 
}
.baipro-header { 
    text-align: center; 
    margin-bottom: 25px; 
}
.baipro-header h2 { 
    font-size: 2.2rem; 
    color: #1e40af; 
    margin: 0 0 15px 0; 
    font-weight: 800;
}

/* هشدار زرد */
.baipro-warning-alert {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    color: #92400e;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(245,158,11,0.15);
    max-width: 850px;
    margin: 20px auto;
    text-align: center;
    border-left: 5px solid #f59e0b;
}
.baipro-warning-alert::before {
    content: "هشدار";
    font-weight: bold;
    margin-left: 10px;
}

/* فیلترها */
.baipro-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}
.filter-btn {
    padding: 9px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 110px;
}
.filter-btn.active,
.filter-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

/* سرچ بار + شمارنده */
.baipro-search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 25px auto;
    flex-wrap: wrap;
    max-width: 900px;
}
.baipro-search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.baipro-search-input-wrapper input#symbol-search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid #e0e7ff;
    border-radius: 16px;
    font-size: 15.5px;
    outline: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.baipro-search-input-wrapper input#symbol-search:focus {
    border-color: #4f46e5;
    box-shadow: 0 6px 20px rgba(79,70,229,0.2);
}
.baipro-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 19px;
    pointer-events: none;
}
.baipro-results-count {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15.5px;
    min-width: 190px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(30,41,59,0.35);
    white-space: nowrap;
    height: fit-content;
    align-self: center;
}

/* کارت‌ها */
.baipro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 22px;
    margin-top: 15px;
}
.baipro-card {
    background: white;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}
.baipro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.baipro-card-header h3 {
    margin: 0 0 12px 0;
    font-size: 1.35rem;
    line-height: 1.5;
    color: #1e293b;
}
.baipro-signal, .baipro-sentiment {
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.88rem;
}
.baipro-signal.buy-strong { background: #064e3b; color: #ecfdf5; }
.baipro-signal.buy { background: #065f46; color: #d1fae5; }
.baipro-signal.caution { background: #78350f; color: #fde68a; }
.baipro-signal.sell { background: #991b1b; color: #fecaca; }
.baipro-signal.sell-strong { background: #7f1d1d; color: #fca5a5; }
.sentiment-positive { background: #10b981; color: white; }
.sentiment-negative { background: #ef4444; color: white; }
.sentiment-neutral { background: #6b7280; color: white; }

.baipro-symbols {
    margin: 14px 0;
    font-size: 0.95rem;
}
.symbol-tag {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
    margin-left: 6px;
    font-size: 0.88rem;
    display: inline-block;
}
.baipro-actions a {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 11px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14.5px;
    transition: all 0.3s;
}
.baipro-actions a:hover {
    background: #2563eb;
}
.baipro-loader { text-align: center; padding: 40px; color: #64748b; font-size: 1.2rem; }
.baipro-no-more { text-align: center; padding: 50px; color: #94a3b8; font-size: 1.3rem; font-weight: 600; }

/* ریسپانسیو */
@media (max-width: 768px) {
    .baipro-search-bar { flex-direction: column; gap: 16px; }
    .baipro-results-count { order: -1; font-size: 15px; padding: 12px 24px; }
    .baipro-search-input-wrapper { max-width: 100%; }
    .baipro-grid { grid-template-columns: 1fr; }
    .baipro-header h2 { font-size: 1.9rem; }
}