 /* Style for the h1 title */
 #reportTitle {
    font-size: 2.5rem;
    /* Larger font size */
    font-weight: bold;
    /* Bold font */
    text-align: center;
    /* Center the title */
    color: #007bff;
    /* Bootstrap primary blue color */
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    /* Gradient effect */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Makes the gradient apply to the text */
    margin-bottom: 20px;
    /* Space below */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle text shadow */
    opacity: 2;
    /* Hidden initially for animation */
}

/* Set a background color for the body */
body {
    background-color: #f0f0f5;
    /* A light grey background */
}

/* Glass effect for the form container */
.filter-box {
    background: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Stronger shadow for the glass effect */
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* Subtle border for glass effect */
}

/* Optional: Styling for input fields */
.filter-box input,
.filter-box select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

/* Optional: Style the submit button */
.filter-box .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
}

.card {
    border-radius: 12px;
    /* Rounded corners for the card */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add a shadow around the card */
    transition: transform 0.2s ease-in-out;
    /* Smooth hover effect */
}

.card-body {
    color: #ffffff;
    /* Set text color to white for readability on colored backgrounds */
    padding: 20px;
    /* Add padding to the card body */
    border-radius: 12px;
    /* Ensure card body has same rounded corners */
}

.card:hover {
    transform: translateY(-5px);
    /* Lift the card on hover */
}

.card-title {
    font-size: 1.2rem;
    /* Adjust title size */
    margin-bottom: 10px;
    /* Add some space below the title */
}

.card-text {
    font-size: 1.5rem;
    /* Increase font size for the text */
    font-weight: bold;
    /* Make the number bold */
}

/* Apply box shadow to the chart container */
.col-md-6,
.col-md-12 {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow effect */
    border-radius: 12px;
    /* Rounded corners for containers */
    padding: 20px;
    /* Padding inside the chart container */
    background-color: #ffffff;
    /* Ensure background is white */
    margin-bottom: 20px;
    /* Add spacing between rows */
}

/* Add some shadow and hover effect to individual canvases if needed */
canvas {
    border-radius: 12px;
    /* Round corners on charts */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Light shadow for charts */
    transition: transform 0.2s ease-in-out;
    /* Smooth hover effect */
}

canvas:hover {
    transform: translateY(-5px);
    /* Lift the chart on hover */
}