/* No data message style */
.nodata-text {
    display: flex; /* Enables flexbox */
    align-items: center; /* Aligns icon and text vertically */
    justify-content: center; /* Centers content horizontally */
    color: #fd7e14; /* Red warning color */
    font-weight: bold;
}

.nodata-text::before {
    content: "\f06a"; /* Unicode for 'circle-exclamation' in Font Awesome */
    font-family: "Font Awesome 6 Pro"; /* Ensure this matches your Font Awesome version */
    font-weight: 300; /* Light weight for fa-light */
    font-size: 1.5em; /* Adjust icon size */
    margin-right: 8px; /* Space between icon and text */
}







