.reports-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.report-header {
    margin-bottom: 30px;
}

.projection-description {
    color: #7f8c8d;
    font-size: 0.95em;
    margin: 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.report-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.report-card-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.report-card-title {
    margin: 0;
    font-size: 1.1em;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.regenerate-badge {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
}

.report-body {
    padding: 15px;
}

.status-label {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f8f9fa;
    color: #7f8c8d;
    border-radius: 4px;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.report-spark {
    margin: 15px 0;
}

.spark-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 5px;
}

.spark-chart {
    height: 40px;
    background: #f8f9fa;
    border-radius: 4px;
}

.loading-indicator {
    text-align: center;
    padding: 10px 0;
}

.loading-indicator img {
    height: 20px;
}

.report-actions {
    margin-top: 15px;
}

.report-action-btn {
    display: block;
    padding: 8px 12px;
    background-color: #3498db;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.report-action-btn:hover {
    background-color: #2980b9;
}

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