﻿   .text-right {
         text-align: right;
     }


   .table-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping of table content */
}

   .checkbox-wrap {
    flex-wrap: wrap;
}

.checkbox-item {
    width: 150px;
    margin-bottom: 8px; /* Optional: for vertical spacing between rows */
}


.sticky-panel {
    position: sticky;
    top: 56px; /* Adjust this value to control the offset from the top */
    z-index: 10000; /* Ensure it stays above other content */
    padding: 10px; /* Optional: Add padding for spacing */
}

/* Light Theme */
body.mud-theme-default .sticky-panel {
    background-color: white;
    color: black; /* Optional: Adjust text color for light theme */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for light theme */
}

/* Dark Theme */
body.mud-theme-dark .sticky-panel {
    background-color: #333; /* Dark background */
    color: white; /* Optional: Adjust text color for dark theme */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Stronger shadow for dark theme */
}

.mud-table td {
    vertical-align: top;
}

.zzdate-range-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}



.filters-section {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chart-container {
    display: flex;
    justify-content: center; /* Centers the chart horizontally */
    align-items: center; /* Centers the chart vertically */
    width: 100%;
    height: 100%;
}
