/* Reports Section Styles */

.report-filters {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #ffd32f;
    text-align: center;
}

.filter-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.filter-container label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    min-width: 180px;
    font-size: 0.9rem;
}

.filter-button {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.2s ease;
}

.filter-button:hover {
    background: #e5e7eb;
    color: #111827;
}

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

.report-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ffd32f;
    text-decoration: none;
    color: inherit;
}

.report-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.report-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.report-stat {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
}

.report-stat svg {
    margin-right: 4px;
}

.report-locations {
    color: #4b5563;
    background-color: #f3f4f6;
    border-radius: 4px;
    padding: 0.125rem 0.375rem;
}

.report-locations svg {
    color: #4b5563;
}

.report-categories {
    color: #5a67d8;
    background-color: #ebf4ff;
    border-radius: 4px;
    padding: 0.125rem 0.375rem;
}

.report-categories svg {
    color: #5a67d8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-container label {
        margin-bottom: 0.25rem;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
}
