/* Morning Reports Styles */
.morning-reports-list {
    display: grid;
    gap: 16px;
}

.morning-report-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.morning-report-card:hover {
    border-color: var(--text-primary);
    transform: translateX(4px);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.report-card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.sentiment-badge {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    font-family: 'IBM Plex Mono', monospace;
}

.sentiment-badge.bullish {
    background: rgba(26, 127, 55, 0.1);
    color: var(--bullish);
}

.sentiment-badge.bearish {
    background: rgba(207, 34, 46, 0.1);
    color: var(--bearish);
}

.sentiment-badge.neutral {
    background: rgba(154, 103, 0, 0.1);
    color: var(--neutral);
}

.report-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-family: 'IBM Plex Mono', monospace;
}

.report-card-summary {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.report-card-footer {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Report Detail Styles */
.morning-report-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.report-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'IBM Plex Mono', monospace;
}

.report-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.report-summary {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 16px;
    background: var(--bg-hover);
    border-left: 3px solid var(--accent);
}

.report-highlights {
    list-style: none;
    padding: 0;
}

.report-highlights li {
    padding: 10px 16px;
    margin-bottom: 8px;
    background: var(--bg-hover);
    border-left: 2px solid var(--text-muted);
}

.report-highlights li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.report-news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 600px;
    overflow-y: auto;
}

.report-news-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    padding: 12px;
    background: var(--bg-hover);
    border-left: 2px solid var(--border);
    font-size: 14px;
}

.report-news-item:hover {
    border-left-color: var(--accent);
}

.news-time {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

.news-title {
    font-weight: 500;
    color: var(--text-primary);
}

.news-meta {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 24px;
}
