/* CSS for items_not_found */
.no-items-section {
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
    height: 100vh; /* Makes the container take the full height of the viewport */
    width: 100%;
}

.no-items-found {
    font-size: 1.25rem; /* Adjust the size as needed */
    font-weight: normal; /* Optional, to make the text bold */
    color: #000000; /* Black text color */
    text-align: center; /* Center the text */
    margin: 20px 0; /* Add some spacing above and below */
    padding: 10px; /* Optional, adds padding around the text */
    background-color: #ffffff; /* White background color */
}


