.form-control.is-invalid {
    border-color: #f1556c !important; /* Adminox's default invalid border color */
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f96a74'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f96a74' stroke='none'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.wrapper {
  background: #FFF;
    /* background: radial-gradient(circle, rgba(255, 255, 255, 1) 15%, rgba(239, 239, 239, 1) 78%); */
    background-image: linear-gradient(to left top, #dbe9ff, #e7eeff, #f1f3ff, #f9f9ff, #ffffff);
}
.form-select {
    color:#000;
}
.card .header-title {
    margin:0px;
}
.card {
    box-shadow: 4px 4px 10px -7px #00000030 !important;
}
.footer {
    background: #477de7;
    color: #FFF;
    border-top: 2px solid #7ebf64;
}
.btn-light {
    border:1px solid #d1cece;
}
.btn-label {
    padding: 5px 10px;
}
.btn-danger {
    background-color: #be1212;
    border-color: #920d21;
    color: #FFF;
}
.btn-soft-primary {
    color: #fff;
    background-color: #64c5b1;
    border-color: #64c5b1;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: #FFF;
    background-color: #477de7 !important;
}
.btn-light:hover {
     border:1px solid #c6c6c6;
}
.invalid-feedback {
    display: none;
}
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}
.host-stats-card {
    width: 250px !important; /* Increase card width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle drop shadow */
}
.host-stats-card .card-header {
    padding-left: 14px !important;
    padding-right: 14px !important;
}
.switchery {
    width: 36px !important;
    height: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}
.switchery > small {
    width: 18px !important;
    height: 18px !important;
}
/* Ensure the Close button matches Bootstrap 4 default styling */
.modal-header .close {
    padding: 0.5rem 1rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.5;
    color: #000;
    text-shadow: none;
}
.modal-header .close:hover {
    opacity: 0.75;
    color: #000;
}
html[data-layout=topnav] .topnav .nav-item .nav-link:hover, html[data-layout=topnav] .topnav .nav-item>a:hover {
    color: #bbffca !important;
}
.chart-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Matches the max-height of the canvas */
    background: rgba(255, 255, 255, 0.5); /* Translucent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Ensure it appears above the chart */
}
[data-bs-theme="dark"] .chart-loader {
    background: rgba(0, 0, 0, 0.5); /* Dark translucent background for dark mode */
}
.chart-loader img {
    display: block;
}
/* Style for host stats cards */
.host-stats-card .stat-label {
    color: #4a4a4a; /* Dark gray for labels */
    font-weight: 500; /* Slightly bold for better readability */
}
.host-stats-card .stat-value {
    color: #353535;
    font-weight: 400; /* Normal weight for values */
}
/* Highlight issues */
.host-stats-card .highlight-issue {
    color: #dc3545; /* Bootstrap's danger red for issues */
    font-weight: 600; /* Bold to draw attention */
}
#nettesters-table [data-lucide] {
    width: 24px;
    height: 24px;
    color: #4b81a0;
}
.host-stats-card .card-body p {
    margin-bottom: 6px;
}
/* Style for host stats cards table */
.host-stats-card .stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em; /* Slightly smaller font for compactness */
    margin-bottom: 8px; /* Space between table and View Pings link */
    table-layout: fixed; /* Prevent column resizing */
}
.host-stats-card .stats-table tr {
    border-bottom: 1px solid #e0e0e0; /* Light border between rows */
}
.host-stats-card .stats-table td {
    padding: 4px 6px; /* Reduced padding for a tighter layout */
}
.host-stats-card .stats-table .stat-label {
    text-align: left !important; /* Left-align labels, override any defaults */
    color: #4a4a4a; /* Dark gray for labels */
    font-weight: 500; /* Slightly bold for labels */
    width: 120px; /* Fixed width for label column */
    background-color: #f9f9f9; /* Subtle gray background for labels */
}
.host-stats-card .stats-table .stat-value {
    text-align: right !important; /* Right-align values, override any defaults */
    color: #1a1a1a; /* Darker color for values */
    font-weight: 400; /* Normal weight for values */
    width: auto; /* Allow value column to take remaining space */
}
/* Highlight issues */
.host-stats-card .highlight-issue {
    color: #dc3545; /* Red for issues */
    font-weight: 600; /* Bold to draw attention */
    background-color: #ff000026; /* Light red background for emphasis */
}
/* Ensure the card body doesn't overflow */
.host-stats-card .card-body {
    padding: 8px; /* Reduced padding for a more compact card */
}
/* Style for the View Pings link */
.host-stats-card .view-pings {
    margin: 0; /* Remove margin to reduce spacing */
    text-align: center; /* Center the link */
    margin-top:10px;
}
.host-stats-card-dimmed {
    opacity: 0.5; /* Reduce opacity to make the card look dimmed */
    transition: opacity 0.3s ease; /* Smooth transition for the opacity change */
}
/* Dark mode adjustments for host stats cards */
[data-bs-theme="dark"] .host-stats-card {
    background-color: #2c323f; /* Match Adminox dark mode card background */
    border-color: rgba(255, 255, 255, 0.05); /* Match Adminox dark mode border */
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15); /* Match Adminox dark mode shadow */
}
[data-bs-theme="dark"] .host-stats-card .card-header {
    background-color: #2f3749; /* Match Adminox dark mode card header */
    color: #ced4da; /* Light text for header */
}
[data-bs-theme="dark"] .host-stats-card .stats-table tr {
    border-bottom: 1px solid #444; /* Darker border for dark mode */
}
[data-bs-theme="dark"] .host-stats-card .stats-table .stat-label {
    color: #ced4da; /* Light gray for labels in dark mode, matching Adminox */
    background-color: #ffffff08; /* Slightly darker background for labels */
}
[data-bs-theme="dark"] .host-stats-card .stats-table .stat-value {
    color: #e0e0e0; /* Lighter gray for values in dark mode */
}
/* Highlight issues in dark mode */
[data-bs-theme="dark"] .host-stats-card .highlight-issue {
    color: #ff6666; /* Brighter red for issues in dark mode */
    background-color: #ff010152; /* Darker red background for contrast */
}
/* Ensure View Pings link is visible in dark mode */
[data-bs-theme="dark"] .host-stats-card .view-pings a {
    color: #66b0ff; /* Lighter blue for links in dark mode */
}
.profile-image-circle {
    width: 32px;
    height: 32px;
    object-fit: cover;
   border:1px solid #018f20;
}
.profile-image-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Target the selected items (chips) for #hostSelect only */
#hostSelect + .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #135da5 !important; /* Darker blue (dodgerblue) */
    color: #fff !important; /* White text for contrast */
    font-size: 12px !important; /* Larger font size */
    padding: 6px 10px !important; /* More padding around text */
    border: 1px solid rgb(22, 104, 185) !important; /* Slightly darker border */
    border-radius: 4px !important; /* Rounded corners */
    margin: 2px !important; /* Space between chips */
}
#hostSelect + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important; /* White "x" for contrast */
    margin-right: 5px !important; /* Space between "x" and text */
}
/* Adjust the overall selection area for #hostSelect */
#hostSelect + .select2-container--multiple .select2-selection--multiple {
    padding: 5px !important; /* Padding inside the selection area */
}
#hostSelect + .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #000 1px;
    outline: 0;
    padding: 2px 6px;
    padding-top: 5px;
}
#hostSelect + .select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    background-color: #1f86ec !important; 
    font-size: 14px;
}
#hostSelect + .select2-container .select2-selection--multiple .select2-selection__choice__remove {
   
    font-size: 14px;
}
#hostSelect +.select2-container .select2-selection--multiple {
    padding-top:5px;
}
#hostSelect {
    display: none;
}
.dashbox_arrow {
    font-size: 17px;
    margin-right: -6px;
}
#downloadExeButton {
    padding: 7px 11px;
    border: 1px solid #94a6bd;
    color: #c0d9f9;
    background-color: #282d35;
}
#downloadExeButton:hover {
    background-color: #f0f0f0;
    color: #000;
    border-color: #ccc;
}
#downloadExeButton svg {
    margin-left:10px !important; /* Remove any default margin */
}
html[data-layout=topnav] .topnav .nav-item .nav-link, html[data-layout=topnav] .topnav .nav-item>a {
    color: #c5dfff;
}
html[data-layout=topnav] .topnav .nav-item .nav-link.active, html[data-layout=topnav] .topnav .nav-item>a.active {
    color: #fff;
    border-bottom: 4px solid #3de700;
}
html[data-layout=topnav] .topnav .navbar-nav .nav-link {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: var(--bs-menu-item-font-size);
    font-weight: 500;
    padding: 17px 17px;
}
 #nettesters-table td {
    color:#000;
    
}
[data-bs-theme="dark"] #nettesters-table td {
    color:#FFF;
    
}
table.table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>* {
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.01);
}
#nettesters-table th {
    background-color: #f7f7f7;
    color: #000;
}
#hosts-table th {
    background-color: #f7f7f7;
    color: #000;
}
.device-type-container {
    position: relative;
}
.device-type-display {
    cursor: pointer;
    transition: all 0.2s ease;
}
.device-type-display:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
    .topnav .navbar-nav .nav-item:first-of-type .nav-link {
         padding-left: 0;
    }
.device-type-select option {
    padding: 5px 10px;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: #FFF;
    background-color: #5ea3cb;
    border-color: #4b81a0;
}
.active>.page-link:hover, .page-link.active:hover {
    color: #FFF;
    background-color: #4b81a0;
    border-color: #3d6f8c;
}
.btn-primary {
   background-color: #5285e8;
    border-color: #477de7;
    color: #FFF;
}
.btn-primary:hover {
   background-color: #3f73da;
    border-color: #477de7;
    color: #FFF;
}
.btn-outline-primary {
    color: #91d7ff;
    border-color: #5ea3cb;
}
.btn-outline-primary:hover {
    color: #FFF;
    background-color: #5ea3cb;
    border-color: #4b81a0;
}
.btn-outline-primary .btn-label {
    background-color:#efefef;
}

.table-action-btn {
    color: #5ea3cb;
    font-size: 16px;
    transition: color 0.2s ease;
    border:1px solid #5ea3cb;
    padding:4px 8px;
    border-radius: 2px;
    background-color: #FFF;
}
.table-action-btn:hover {
    color: #FFF;
    background-color: #5ea3cb;
    border-color: #4b81a0;
}
a {
    color: #5ea3cb;
    text-decoration: none;
}
  .btn .mdi {
            font-size: 16px;
            vertical-align: middle;
        }

        .user-icon-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.app_header_left {
    min-width: 0;
}

.header_current_nav_button {
    display: none;
    align-items: center;
    flex: 0 1 auto;
    gap: 8px;
    min-width: 0;
    max-width: clamp(110px, 24vw, 320px);
    min-height: 38px;
    margin-left: 8px;
    padding: 6px 12px;
    color: #fff;
    background: #477de7;
    border: 1px solid #3f70cc;
    border-radius: 5px;
    box-shadow: 4px 3px 7px rgb(4 9 18 / 10%);
}

body.header_nav_condensed .header_current_nav_button {
    display: inline-flex;
    transform-origin: left center;
    animation: header_nav_button_pop_in 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.header_nav_button_exiting .header_current_nav_button {
    pointer-events: none;
    animation: header_nav_button_pull_out 150ms cubic-bezier(0.55, 0, 0.7, 0.2) both;
}

.header_current_nav_button:hover,
.header_current_nav_button:focus,
.header_current_nav_button:active,
body.header_nav_open .header_current_nav_button {
    color: #fff;
    background: #3f70cc;
    border-color: #365fb2;
}

.header_current_nav_button .btn-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    line-height: 1;
    overflow: visible;
}

#header_current_nav_icon {
    display: block;
    width: 18px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

#header_current_nav_text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_current_nav_chevron {
    flex: 0 0 auto;
    font-size: 12px;
    transition: transform 0.15s ease;
}

body.header_nav_open .header_current_nav_chevron {
    transform: rotate(180deg);
}

@keyframes header_nav_button_pop_in {
    0% {
        opacity: 0;
        transform: translateX(-10px) scale(0.82);
    }

    70% {
        opacity: 1;
        transform: translateX(2px) scale(1.04);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes header_nav_button_pull_out {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-12px) scale(0.7);
    }
}

html[data-layout=topnav] .topnav {
    width: 100%;
    z-index: 1000;
    position: relative;
    top: auto;
    background: #477de7;
    box-shadow: 7px 8px 12px -7px #477de7c2 !important;
}

html[data-layout=topnav] body.header_nav_open .topnav {
    position: sticky;
    top: calc(var(--bs-topbar-height) + 1px);
    z-index: 1004;
    max-height: none;
    overflow: visible;
}

html[data-layout=topnav] body.header_nav_open .topnav .dropdown-menu {
    z-index: 1010;
}

body.modal-open .app-topbar,
html[data-layout=topnav] body.modal-open .topnav {
    z-index: 1040;
}

body.modal-open .modal-backdrop {
    z-index: 1990;
}

body.modal-open .modal {
    z-index: 2000;
}

@media (max-width: 575.98px) {
    .header_current_nav_button {
        max-width: 118px;
        margin-left: 4px;
        padding: 6px 8px;
    }
}

@media (max-width: 991.98px) {
    html[data-layout=topnav] body.header_nav_open .topnav {
        max-height: calc(100vh - var(--bs-topbar-height));
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.dropdown-toggle::after {
    margin-left:10px;
}
#downloadAgentMenuButton {
    min-height: 38px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

#downloadAgentMenuButton:hover,
#downloadAgentMenuButton.show {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
    border-radius: 5px;
}

#downloadAgentMenuButton .btn-label {
    padding: 0 6px 0 0;
    background: transparent;
}

#downloadAgentMenuButton + #downloadAgentDropdownMenu:not(.show) {
    display: none !important;
}

#downloadAgentDropdownMenu {
    width: min(360px, calc(100vw - 24px));
    min-width: 0;
    top: calc(100% + 14px) !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 0 !important;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(38, 48, 74, 0.18);
    overflow: visible;
    transform: none !important;
}

#downloadAgentDropdownMenu.show {
    display: block !important;
}

#downloadAgentDropdownMenu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 78px;
    width: 16px;
    height: 16px;
    background: var(--bs-dropdown-bg);
    border-left: 1px solid var(--bs-border-color);
    border-top: 1px solid var(--bs-border-color);
    transform: rotate(45deg);
}

#downloadWindowsAgentButton,
#downloadLinuxAgentButton {
    min-height: 68px;
    padding: 10px 12px;
    color: #24364f;
    background: #fff;
    border: 1px solid #dfe7f1;
    border-radius: 6px;
    box-shadow: none;
    white-space: normal;
}

#downloadWindowsAgentButton:hover,
#downloadLinuxAgentButton:hover {
    color: #24364f;
    background: #f8fbff;
    border-color: #c9d7e8;
}

#downloadWindowsAgentIconTile,
#downloadLinuxAgentIconTile {
    width: 50px;
    height: 50px;
    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 26px;
}

#downloadWindowsAgentIconTile {
    color: #147bd1;
    background: #e8f4ff;
}

#downloadLinuxAgentIconTile {
    color: #111;
    background: #eef8e7;
}

#downloadWindowsAgentActionIcon,
#downloadLinuxAgentActionIcon {
    font-size: 20px;
}

#downloadWindowsAgentActionIcon {
    color: #1677ee;
}

#downloadLinuxAgentActionIcon {
    color: #30b15f;
}

[data-bs-theme="dark"] #downloadAgentDropdownMenu {
    background: #343c49;
}

[data-bs-theme="dark"] #downloadAgentDropdownMenu::before {
    background: #343c49;
    border-color: #3c4655;
}

[data-bs-theme="dark"] #downloadWindowsAgentButton,
[data-bs-theme="dark"] #downloadLinuxAgentButton {
    color: #dee2e6;
    background: #2c313e;
    border-color: #3c4655;
}

[data-bs-theme="dark"] #downloadWindowsAgentButton:hover,
[data-bs-theme="dark"] #downloadLinuxAgentButton:hover {
    color: #fff;
    background: #313846;
    border-color: #506073;
}

@media (prefers-reduced-motion: no-preference) {
    #spa-page-content {
        will-change: opacity;
    }
}
#topnav-menu-content .dropdown-toggle::after
 {
    margin-left: 2px;
}
.btn-primary2 {
    background-color: #5db6a4;
    border-color: #64c5b1;
    color: #FFF;
    --bs-btn-color: #fff;
    --bs-btn-bg: #64c5b1;
    --bs-btn-border-color: #64c5b1;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5bb2a0;
    --bs-btn-hover-border-color: #5db6a4;
    --bs-btn-focus-shadow-rgb: 123, 206, 189;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #5db6a4;
    --bs-btn-active-border-color: #5db6a4;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #64c5b1;
    --bs-btn-disabled-border-color: #64c5b1;
}

.datatable_search_wrapper {
    position: relative;
    display: inline-block;
}

div.dt-container div.dt-search .datatable_search_wrapper input[type="search"] {
    margin-left: 8px;
}

.datatable_search_wrapper.datatable_search_active input[type="search"] {
    padding-right: 30px;
    background-color: #d1e7dd;
    border-color: #75b798;
    box-shadow: 0 0 0 1px rgba(25, 135, 84, 0.08);
}

.datatable_search_wrapper.datatable_search_active input[type="search"]:focus {
    border-color: #4fa77a;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.16);
}

.datatable_search_wrapper input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
}

.datatable_search_clear {
    position: absolute;
    top: 50%;
    right: 7px;
    padding: 0;
    color: #287a55;
    background: transparent;
    border: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    transform: translateY(-50%);
}

.datatable_search_clear:hover,
.datatable_search_clear:focus {
    color: #155c3d;
}

[data-bs-theme="dark"] .datatable_search_wrapper.datatable_search_active input[type="search"] {
    color: #d1e7dd;
    background-color: #193d31;
    border-color: #3f8f6b;
}

[data-bs-theme="dark"] .datatable_search_clear {
    color: #75b798;
}

.datatable_filtered_info {
    padding: 2px 5px;
    color: #287a55;
    background-color: #d1e7dd;
    border: 1px solid #75b798;
    border-radius: 3px;
}

.nettester_select {
    isolation: isolate;
    width: 100%;
}

.nettester_select_open {
    z-index: 1050;
}

.nettester_select_toggle {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    background: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 5px;
   
}
.nettester_select_toggle:hover {
    background: #EBEFFB6B;
background: linear-gradient(213deg,rgba(235, 239, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid #dadeeb;
}
.nettester_select_icon_column {
    align-self: stretch;
    display: grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 1px solid var(--bs-border-color);
}

.nettester_select_icon {
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--bs-primary);
    background: transparent;
    font-size: 24px;
}

.nettester_select_icon_up {
    color: var(--bs-success);
}

.nettester_select_icon_down {
    color: var(--bs-danger);
}

.nettester_select_summary {
    display: grid;
    gap: 2px;
}

.nettester_select_caption {
    color: var(--bs-secondary-color);
    font-size: 12px;
    font-weight: 600;
}

.nettester_select_label {
    overflow: hidden;
    color: var(--bs-emphasis-color);
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nettester_select_status_line {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.nettester_select_status_dot,
.nettester_select_group_dot,
.nettester_select_item_dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nettester_select_chevron {
    padding: 0;
    background: transparent;
    font-size: 16px;
}

.nettester_select_menu {
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    padding: 92px 10px 10px;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 4px 4px 14px rgba(38, 48, 74, 0.18);
    transform-origin: top center;
}

.nettester_select_open .nettester_select_menu {
    animation: nettester_select_menu_in 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nettester_select_closing .nettester_select_menu {
    pointer-events: none;
    animation: nettester_select_menu_out 190ms cubic-bezier(0.4, 0, 1, 1) both;
}

.nettester_select_scroll {
    max-height: calc(100vh - 242px);
    max-height: calc(100dvh - 242px);
}

.nettester_select_scroll .simplebar-track.simplebar-vertical {
    right: 2px;
    width: 6px;
    opacity: 0;
    transition: opacity 150ms ease;
}

.nettester_select_menu:hover .simplebar-track.simplebar-vertical {
    opacity: 1;
}

.nettester_select_scroll .simplebar-scrollbar::before {
    right: 1px;
    left: 1px;
    background: var(--bs-secondary-color);
    border-radius: 6px;
}

.nettester_select_menu:hover .simplebar-scrollbar::before {
    opacity: 0.3;
    transition-delay: 0s;
}

.nettester_select_scroll .simplebar-scrollbar.simplebar-visible::before {
    opacity: 0.45;
}

@keyframes nettester_select_menu_in {
    from {
        opacity: 0.55;
        transform: scale(0.92, 0.08);
    }
    to {
        opacity: 1;
        transform: scale(1, 1);
    }
}

@keyframes nettester_select_menu_out {
    from {
        opacity: 1;
        transform: scale(1, 1);
    }
    to {
        opacity: 0.45;
        transform: scale(0.94, 0.08);
    }
}

.nettester_select_open .nettester_select_scroll {
    animation: nettester_select_contents_in 170ms 120ms ease-out both;
}

.nettester_select_closing .nettester_select_scroll {
    animation: nettester_select_contents_out 80ms ease-in both;
}

@keyframes nettester_select_contents_in {
    from {
        opacity: 0;
        transform: translateY(-9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nettester_select_contents_out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nettester_select_open .nettester_select_menu,
    .nettester_select_closing .nettester_select_menu,
    .nettester_select_open .nettester_select_scroll,
    .nettester_select_closing .nettester_select_scroll {
        animation-duration: 1ms;
        animation-delay: 0ms;
    }
}

.nettester_select_search_wrap {
    position: relative;
    margin-bottom: 10px;
}

.nettester_select_search_wrap > i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 12px;
    color: var(--bs-secondary-color);
    transform: translateY(-50%);
}

.nettester_select_search {
    padding-left: 34px;
}

.nettester_select_section {
    margin-top: 10px;
    overflow: hidden;
    background: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 7px;
}

.nettester_select_section_heading {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--bs-emphasis-color);
    background: #f5f8ff;
    font-weight: 600;
}

.nettester_select_group_header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    border-top: 1px solid var(--bs-border-color);
}

.nettester_select_group:first-child .nettester_select_group_header {
    border-top: 0;
}

.nettester_select_group_toggle,
.nettester_select_group_choice,
.nettester_select_item {
    color: var(--bs-body-color);
    background: var(--bs-secondary-bg);
    border: 0;
}

.nettester_select_group_toggle {
    padding: 9px 4px 9px 12px;
    font-size: 18px;
}

.nettester_select_item_chevron {
    padding: 0;
    background: transparent;
}

.nettester_select_count {
    color: var(--bs-body-color);
    font-weight: 500;
    white-space: nowrap;
}

.nettester_select_group_choice {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px 9px 6px;
    text-align: left;
}

.nettester_select_group_choice.active,
.nettester_select_item.active {
    background: var(--bs-primary-bg-subtle);
}

.nettester_select_group_members {
    margin: 0 10px 10px 34px;
    overflow: hidden;
    background: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 6px;
}

.nettester_select_item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 9px 12px;
    text-align: left;
    border-top: 1px solid var(--bs-border-color);
}

.nettester_select_item:first-child {
    border-top: 0;
}

.nettester_select_item:hover,
.nettester_select_group_choice:hover {
    background: var(--bs-tertiary-bg);
}

.nettester_select_item_name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nettester_select_item_chevron {
    color: var(--bs-secondary-color);
    font-size: 20px;
}

.nettester_select_group_list,
.nettester_select_nett_list {
    max-height: none;
    overflow: visible;
}

[data-bs-theme="dark"] .datatable_filtered_info {
    color: #d1e7dd;
    background-color: #193d31;
    border-color: #3f8f6b;
}
