/* css/reportes.css */
.reportes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.report-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.report-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.1);
}

.card-header-rep {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.card-header-rep h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-header-rep i {
    font-size: 1.2rem;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.insight-bot {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), var(--card-bg));
    border-left: 4px solid var(--secondary-color);
}

.bot-avatar-insight {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.insight-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-item {
    background: rgba(15, 23, 42, 0.5);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
}

.insight-item.positive { border-left-color: #22C55E; }
.insight-item.negative { border-left-color: #EF4444; }
.insight-item.neutral  { border-left-color: #F59E0B; }

@media (max-width: 900px) {
    .reportes-grid {
        grid-template-columns: 1fr;
    }
}
