.d-none {
    display: none !important;
}

.row-background {
    background-color: #f0f0f0; /* A light grey color */
    min-height: 100vh; /* Minimum height of 100 viewport height units */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    pointer-events: none;
    /* Allows clicks to pass through the overlay to the underlying image */
}

.small-text th,
.small-text td {
    font-size: 12px;
    /* Adjust font size as needed */
    padding: 0.5rem;
    /* Adjust padding as needed */
}

.navbar-brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align items vertically */
    padding: 10px;
    /* Add padding for spacing */
}

.navbar-brand-box .logo span {
    font-family: Arial Black, sans-serif;
    color: white;
    font-size: 24px;
    line-height: 1.5;
    /* Ensure proper line height */
    text-align: center;
    /* Center align text */
    margin-bottom: 10px;
    /* Add margin at the bottom for spacing */
}

@media screen and (max-width: 768px) {
    .navbar-brand-box .logo span {
        font-size: 18px;
        /* Adjust font size for smaller screens */
    }

    .navbar-brand-box .logo-lg {
        display: none;
        /* Hide the logo-lg span on smaller screens */
    }
}

/* Increase font size and change color to white */
.nav-link.menu-link span {
    font-size: 16px;
    color: white;
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Add transition effect */
}

/* Hover state */
.nav-item .nav-link.menu-link:hover span {
    background-color: #a3a3a3;
    /* Change background color on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Add box shadow on hover */
}

.sidebar-collapsed {
    width: 72px;
    /* Adjust the width to your preference */
}

.sidebar-collapsed .navbar-brand-box .logo {
    display: none;
    /* Hide the logo when sidebar is collapsed */
}

.sidebar-collapsed .navbar-brand-box .btn {
    padding: 0;
    /* Remove padding from the button */
    width: 72px;
    /* Set the width of the button */
}

.sidebar-collapsed .navbar-nav {
    display: none;
    /* Hide the menu items when sidebar is collapsed */
}

.sidebar-collapsed #two-column-menu {
    display: none;
    /* Hide the two-column menu when sidebar is collapsed */
}

.menu-title {
    /* Your existing styles */
}

.menu-title .menu-title-text {
    color: #f1af35 !important;
}

.table td,
.table th {
    word-wrap: break-word;
    max-width: 200px;
    /* Adjust the max-width as needed */
    overflow-wrap: break-word;
}
