.ellipsis {
    max-width: 500px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    overflow-x: auto;
}

th, td { 
min-width: 100px; 
white-space: nowrap;
}


.thin-scrollbar {
    scrollbar-width: thin;
}
#sidebar-wrapper {
    position: fixed;
    z-index: 2;
    right: 0;
    width: 250px;
    height: 100%;
    transition: 0.4s;
    transform: translateX(250px);
    background: #1d809f;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-nav li.sidebar-nav-item a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 15px;
}
.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
    font-size: 1.2rem;
    background: rgba(52, 58, 64, 0.1);
    height: 80px;
    line-height: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
#sidebar-nav a,
.dropdown-item,
.dropdown-item.active,
.dropdown-item:active,
.menu-toggle:focus,
.menu-toggle:hover,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .show > .nav-link,
.sidebar-nav > .sidebar-brand a {
    color: #fff;
}
.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: 0 0;
}
.menu-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);
    line-height: 50px;
    z-index: 999;
}
.menu-toggle:hover {
    background: #343a40;
}
#sidebar-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff !important;
    padding: 0;
}
#sidebar-nav li,
#sidebar-wrapper {
    padding: 0;
}
.navbar {
    background: #222;
    padding: 0.2rem 1rem;
}
.nav-link:hover {
    color: #fff !important;
}
.nav-item::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #f9243f;
    transition: 0.2s;
}
.nav-item:hover::after {
    width: 100%;
}
.nav-link {
    transition: 0.2s;
    color: rgba(255, 255, 255, 0.6) !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background: #fff;
}
.dropdown-menu {
    background: #222;
}
.navbar-header .navbar-brand {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
}
.form-control,
textarea.form-control {
    background-color: #1b1b1b;
}
.form-control:focus {
    background-color: #1b1b1b;
}
.border.rounded-0.border-danger {
    border-color: #6a000d !important;
}
.dropdown-item:hover {
    color: #000;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #1b1b1b !important;
}
.boxsizingBorder {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
textarea {
    border: 1px solid #1b1b1b;
    width: 100%;
    margin: 5px 0;
    padding: 1%;
    background-color: #1b1b1b;
    color: var(--bs-gray);
}