body {
    background-color: #1A1A1A;
    /* Subtle industrial grid background */
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1A1A1A; 
}
::-webkit-scrollbar-thumb {
    background: #FF5000; 
}

/* Hover glow for cards */
.report-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.report-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 80, 0, 0.4);
    box-shadow: 0 10px 30px -10px rgba(255, 80, 0, 0.15);
}

/* Custom button states */
.filter-btn {
    cursor: pointer;
}
.filter-btn.active {
    border-color: #FF5000;
    color: #FF5000;
    background-color: rgba(255, 80, 0, 0.1);
}
