@font-face {
    font-family: "Poppins";
    src: url("/dist/fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("/dist/fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("/dist/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

:root {
    --np-bg: #06110b;
    --np-surface: #0b1810;
    --np-card: rgba(9, 20, 13, 0.9);
    --np-card-strong: #0f1f15;
    --np-text: #edf8ef;
    --np-muted: #9db3a3;
    --np-line: rgba(108, 255, 156, 0.14);
    --np-primary: #19d96b;
    --np-primary-deep: #0b8f43;
    --np-secondary: #0f291a;
    --np-accent: #8dffb7;
    --np-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

html,
body,
.npanel-shell {
    min-height: 100%;
}

body.npanel-shell {
    font-family: "Poppins", "Trebuchet MS", sans-serif !important;
    color: var(--np-text);
    background:
        radial-gradient(circle at top left, rgba(25, 217, 107, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(95, 255, 159, 0.12), transparent 28%),
        linear-gradient(180deg, #030806 0%, #08120d 100%);
}

.npanel-shell .content-wrapper,
.npanel-shell .wrapper,
.npanel-shell .content,
.npanel-shell .main-footer,
.npanel-shell .main-header,
.npanel-shell .main-sidebar,
.npanel-shell .login100-form,
.npanel-shell .wrap-login100 {
    position: relative;
}

.npanel-shell .main-header.navbar {
    border-bottom: 1px solid rgba(108, 255, 156, 0.12);
    backdrop-filter: blur(14px);
    background: linear-gradient(120deg, rgba(8, 17, 12, 0.94), rgba(11, 28, 18, 0.86)) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.npanel-shell.dark-mode .main-header.navbar {
    background: linear-gradient(120deg, rgba(22, 31, 43, 0.94), rgba(26, 38, 52, 0.86)) !important;
}

.npanel-shell.npanel-app .wrapper {
    min-height: 100vh;
    min-height: 100dvh;
}

.npanel-shell.npanel-app .main-header.navbar {
    min-height: calc(2.93725rem + 1px);
    padding: 0.3rem 0.9rem;
    display: flex;
    align-items: center;
}

.npanel-shell.npanel-app .main-header .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
}

.npanel-shell.npanel-app .main-header .nav-item {
    display: flex;
    align-items: center;
}

.npanel-shell.npanel-app .main-header .nav-link {
    min-height: 2.35rem;
    padding: 0.45rem 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    color: var(--np-text) !important;
}

.npanel-shell.npanel-app .main-header .nav-link:hover,
.npanel-shell.npanel-app .main-header .nav-link:focus {
    background: rgba(255, 255, 255, 0.06);
}

.npanel-shell.npanel-app .npanel-refresh-btn {
    min-height: 2.55rem;
    padding: 0.55rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(108, 255, 156, 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 30, 20, 0.98), rgba(21, 48, 32, 0.88));
    color: #edfff2 !important;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.npanel-shell.npanel-app .npanel-refresh-btn:hover,
.npanel-shell.npanel-app .npanel-refresh-btn:focus {
    transform: translateY(-1px);
    border-color: rgba(108, 255, 156, 0.3);
    background: linear-gradient(135deg, rgba(18, 38, 25, 1), rgba(27, 60, 39, 0.95));
    box-shadow: 0 18px 34px rgba(25, 217, 107, 0.16);
}

.npanel-shell.npanel-app .npanel-refresh-btn i {
    color: #6cff9c;
    font-size: 0.88rem;
}

.npanel-shell.npanel-app .npanel-refresh-btn.is-loading {
    opacity: 0.88;
    pointer-events: none;
}

.npanel-shell.npanel-app .npanel-refresh-btn.is-loading i {
    animation: npanelSpin 0.9s linear infinite;
}

@keyframes npanelSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.npanel-shell.npanel-app .npanel-quick-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.npanel-shell.npanel-app .npanel-quick-dropdown > .btn {
    min-width: 0;
    margin: 0;
    padding: 0.48rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(25, 217, 107, 0.22);
}

.npanel-shell.npanel-app .npanel-quick-dropdown .dropdown-menu {
    margin-top: 0.55rem;
    min-width: 15rem;
    left: 0;
    right: auto;
}

.npanel-shell.npanel-app .brand-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 4.65rem;
}

.npanel-shell.npanel-app .brand-link .brand-image {
    width: 2.65rem;
    height: 2.65rem;
    margin: 0 !important;
    padding: 0.22rem;
    border-radius: 14px;
    object-fit: contain;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(108, 255, 156, 0.08));
    border: 1px solid rgba(108, 255, 156, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.npanel-shell.npanel-app .brand-link .brand-text {
    display: inline-block;
    font-size: 1.02rem;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: #edf8ef !important;
}

.npanel-shell .main-sidebar {
    background:
        linear-gradient(180deg, rgba(4, 10, 7, 0.98), rgba(9, 22, 14, 0.99)),
        radial-gradient(circle at top, rgba(25, 217, 107, 0.16), transparent 36%) !important;
    box-shadow: 18px 0 50px rgba(0, 0, 0, 0.42);
}

.npanel-shell.npanel-app .main-sidebar {
    position: fixed !important;
    top: 0;
    bottom: 0;
}

.npanel-shell .brand-link {
    height: auto;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.npanel-shell .brand-link img {
    max-height: 42px;
    object-fit: contain;
}

.npanel-shell.npanel-app.sidebar-collapse .brand-link {
    justify-content: center;
    gap: 0;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

.npanel-shell.npanel-app.sidebar-collapse .brand-link .brand-image {
    width: 2.55rem;
    height: 2.55rem;
}

.npanel-shell.npanel-app.sidebar-collapse .nav-sidebar > .nav-item > .nav-link {
    justify-content: center;
    min-height: 2.65rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

.npanel-shell.npanel-app.sidebar-collapse .nav-sidebar > .nav-item > .nav-link .nav-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 !important;
    border-radius: 999px;
}

.npanel-shell.npanel-app.sidebar-collapse .brand-link .brand-text {
    display: none !important;
}

.npanel-shell .sidebar {
    padding: 0.75rem 0.55rem 1.5rem;
}

.npanel-shell .sidebar .user-panel,
.npanel-shell .sidebar .info,
.npanel-shell .nav-sidebar .nav-link p,
.npanel-shell .nav-sidebar .nav-header,
.npanel-shell .main-sidebar .brand-link {
    color: #f7efe5 !important;
}

.npanel-shell .nav-sidebar .nav-header {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.58;
}

.npanel-shell .nav-sidebar .nav-link {
    border-radius: 16px;
    margin-bottom: 0.3rem;
    padding: 0.8rem 0.95rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.npanel-shell .nav-sidebar .nav-link:hover,
.npanel-shell .nav-sidebar .nav-link.active {
    background: linear-gradient(135deg, rgba(15, 171, 83, 0.98), rgba(39, 247, 126, 0.9)) !important;
    color: #041008 !important;
    transform: translateX(3px);
    box-shadow: 0 12px 26px rgba(25, 217, 107, 0.28);
}

.npanel-shell .nav-sidebar .menu-open > .nav-link {
    background: rgba(255, 255, 255, 0.08);
}

.npanel-shell .content-wrapper {
    background: transparent !important;
}

.npanel-shell.npanel-app .content-wrapper {
    clear: both;
    margin-top: calc(2.93725rem + 1px) !important;
    min-height: calc(100vh - (2.93725rem + 1px));
    min-height: calc(100dvh - (2.93725rem + 1px));
    padding-bottom: 1.75rem;
    overflow-x: hidden;
}

.npanel-shell .content-header {
    padding-top: 1.15rem;
}

.npanel-shell.npanel-app .content-header {
    padding: 0.95rem 0 0.35rem;
}

.npanel-shell.npanel-app .content-header .container-fluid,
.npanel-shell.npanel-app .content .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

.npanel-shell.npanel-app .content-header .row {
    align-items: center;
}

.npanel-shell.npanel-app .content-wrapper > .content {
    padding-top: 0.2rem;
}

.npanel-shell.npanel-app .breadcrumb {
    margin-bottom: 0;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    background: rgba(9, 25, 16, 0.86);
    border: 1px solid rgba(108, 255, 156, 0.1);
}

.npanel-shell.npanel-app .sidebar {
    padding-top: 0.55rem;
    padding-bottom: 2rem;
}

.npanel-shell.npanel-app,
.npanel-shell.npanel-app .main-sidebar,
.npanel-shell.npanel-app .sidebar,
.npanel-shell.npanel-app .content-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.npanel-shell.npanel-app .main-sidebar .os-scrollbar,
.npanel-shell.npanel-app .sidebar .os-scrollbar,
.npanel-shell.npanel-app .main-sidebar .os-scrollbar-track,
.npanel-shell.npanel-app .sidebar .os-scrollbar-track,
.npanel-shell.npanel-app .main-sidebar .os-scrollbar-handle,
.npanel-shell.npanel-app .sidebar .os-scrollbar-handle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.npanel-shell.npanel-app::-webkit-scrollbar,
.npanel-shell.npanel-app .main-sidebar::-webkit-scrollbar,
.npanel-shell.npanel-app .sidebar::-webkit-scrollbar,
.npanel-shell.npanel-app .content-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.npanel-shell.npanel-app .sidebar .user-panel {
    margin: 0.55rem 0.35rem 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 30, 21, 0.96), rgba(7, 17, 11, 0.88));
    border: 1px solid rgba(108, 255, 156, 0.14);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.npanel-shell.npanel-app .sidebar .user-panel .info {
    padding-left: 0;
}

.npanel-shell.npanel-app .sidebar .user-panel .info a {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.npanel-shell.npanel-app .nav-sidebar > .nav-item > .nav-link {
    min-height: 3rem;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    justify-content: space-between;
}

.npanel-shell.npanel-app .nav-sidebar > .nav-item > .nav-link .nav-icon {
    font-size: 1.05rem;
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 0 !important;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dff3e7;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(108, 255, 156, 0.06));
    border: 1px solid rgba(108, 255, 156, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.npanel-shell.npanel-app .nav-sidebar .nav-link p {
    flex: 1 1 auto;
    margin: 0;
}

.npanel-shell.npanel-app .nav-sidebar .nav-link:hover .nav-icon,
.npanel-shell.npanel-app .nav-sidebar .nav-link.active .nav-icon,
.npanel-shell.npanel-app .nav-sidebar .menu-open > .nav-link .nav-icon {
    color: #041008;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.36);
}

.npanel-shell.npanel-app .nav-sidebar .nav-link .right {
    margin-left: auto;
}

.npanel-shell.npanel-app .nav-sidebar .nav-treeview {
    padding: 0.15rem 0 0.35rem 0.55rem;
}

.npanel-shell.npanel-app .nav-sidebar .nav-treeview > .nav-item > .nav-link {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 2.7rem;
}

.npanel-shell.npanel-app .nav-sidebar .nav-treeview > .nav-item > .nav-link .nav-icon {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.8rem;
    border-radius: 999px;
    background: rgba(108, 255, 156, 0.08);
    color: #87f6b1;
    border: 1px solid rgba(108, 255, 156, 0.12);
}

.npanel-shell.npanel-app .npanel-template-page .card,
.npanel-shell.npanel-app .npanel-template-page .callout {
    border-radius: 26px;
}

.npanel-shell.npanel-app .npanel-template-page .card-body {
    padding: 1.15rem;
}

.npanel-shell.npanel-app .npanel-template-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app .npanel-template-note,
.npanel-shell.npanel-app .npanel-template-help {
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(10, 24, 16, 0.92), rgba(14, 31, 21, 0.82));
    border: 1px solid rgba(108, 255, 156, 0.12);
}

.npanel-shell.npanel-app .npanel-template-note h4,
.npanel-shell.npanel-app .npanel-template-help h4 {
    margin: 0 0 0.45rem;
    font-size: 1.12rem;
    color: #ffffff;
}

.npanel-shell.npanel-app .npanel-template-note p,
.npanel-shell.npanel-app .npanel-template-help p {
    margin: 0;
    color: rgba(221, 238, 227, 0.78);
    line-height: 1.6;
}

.npanel-shell.npanel-app .npanel-template-help ul {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
    color: rgba(221, 238, 227, 0.84);
}

.npanel-shell.npanel-app .npanel-template-section {
    margin-bottom: 1rem;
    overflow: hidden;
}

.npanel-shell.npanel-app .npanel-template-section .templates {
    margin-bottom: 0 !important;
    border-radius: 18px !important;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
}

.npanel-shell.npanel-app .npanel-template-section .templates h6 {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
}

.npanel-shell.npanel-app .npanel-template-panel {
    padding-top: 1rem;
}

.npanel-shell.npanel-app .npanel-template-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1rem;
    margin: 0;
}

.npanel-shell.npanel-app .npanel-template-grid > [class*="col-"] {
    max-width: none;
    width: 100%;
    padding: 0;
}

.npanel-shell.npanel-app .npanel-template-textarea {
    min-height: 280px !important;
    resize: vertical;
    line-height: 1.65 !important;
    padding: 1rem !important;
}

.npanel-shell.npanel-app .npanel-template-table {
    overflow-x: auto;
}

.npanel-shell.npanel-app .npanel-template-table .table {
    margin-bottom: 0.8rem;
}

.npanel-shell.npanel-app .npanel-content-grid .row {
    row-gap: 1rem;
}

.npanel-shell.npanel-app .npanel-content-grid .card-body {
    padding: 0;
}

.npanel-shell.npanel-app .npanel-content-grid .small-box {
    height: 100%;
    min-height: 180px;
    border-radius: 28px;
    overflow: hidden;
}

.npanel-shell.npanel-app .npanel-content-grid .small-box .inner,
.npanel-shell.npanel-app .npanel-content-grid .small-box .icon,
.npanel-shell.npanel-app .npanel-content-grid .small-box .small-box-footer {
    position: relative;
    z-index: 1;
}

.npanel-shell.npanel-app .npanel-content-grid .projects td {
    vertical-align: middle;
}

.npanel-shell.npanel-app .npanel-content-grid img.content-cover {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(108, 255, 156, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.npanel-shell.npanel-app .npanel-dashboard-page .container-fluid {
    max-width: none;
}

.npanel-shell.npanel-app .npanel-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.45fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.35rem;
    border-radius: 30px;
    border: 1px solid rgba(108, 255, 156, 0.08);
    background:
        linear-gradient(145deg, rgba(11, 22, 17, 0.98), rgba(20, 31, 40, 0.92)),
        radial-gradient(circle at top right, rgba(31, 214, 107, 0.12), transparent 28%);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.npanel-shell.npanel-app .npanel-dashboard-hero-copy {
    display: grid;
    gap: 0.95rem;
    align-content: space-between;
}

.npanel-shell.npanel-app .npanel-dashboard-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(39, 247, 126, 0.1);
    border: 1px solid rgba(39, 247, 126, 0.16);
    color: #89f4b1;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.npanel-shell.npanel-app .npanel-dashboard-hero-copy h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    color: #ffffff;
}

.npanel-shell.npanel-app .npanel-dashboard-hero-copy p {
    margin: 0;
    max-width: 38rem;
    color: #9cb1a6;
    font-size: 1rem;
    line-height: 1.6;
}

.npanel-shell.npanel-app .npanel-dashboard-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.npanel-shell.npanel-app .npanel-dashboard-kpis-primary {
    align-content: start;
    margin-bottom: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-kpis-primary .info-box {
    min-height: 100%;
}

.npanel-shell.npanel-app .npanel-dashboard-summary {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview.has-fasttests {
    grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.72fr);
    align-items: start;
}

.npanel-shell.npanel-app .npanel-dashboard-overview-main,
.npanel-shell.npanel-app .npanel-dashboard-overview-side {
    min-width: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-overview .npanel-dashboard-summary {
    margin-bottom: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-clients {
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.npanel-shell.npanel-app .npanel-dashboard-clients-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 0.9rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-card-wide {
    grid-column: 1 / -1;
}

.npanel-shell.npanel-app .npanel-dashboard-overview .npanel-dashboard-summary-card {
    padding: 0.82rem 0.95rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview .npanel-dashboard-summary-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview .npanel-dashboard-summary-metric {
    min-height: 3.6rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-card {
    border-radius: 28px;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(108, 255, 156, 0.1);
    background:
        linear-gradient(140deg, rgba(11, 24, 16, 0.96), rgba(16, 30, 22, 0.82)),
        radial-gradient(circle at top right, rgba(25, 217, 107, 0.09), transparent 26%);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.65rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-head h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.15;
    color: #ffffff;
}

.npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell .btn {
    margin: 0 0.2rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(108, 255, 156, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #86f4b1;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 4rem;
    padding: 0.72rem 0.78rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(108, 255, 156, 0.07);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-icon {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1;
    color: #ffffff;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric small {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.76rem;
    color: #9bb1a6;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric.is-active .npanel-dashboard-summary-icon {
    color: #27f77e;
    background: rgba(39, 247, 126, 0.12);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric.is-inactive .npanel-dashboard-summary-icon {
    color: #ff4d7d;
    background: rgba(255, 77, 125, 0.12);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric.is-total .npanel-dashboard-summary-icon {
    color: #d8def5;
    background: rgba(216, 222, 245, 0.12);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-metric.is-connection .npanel-dashboard-summary-icon {
    color: #f1c84f;
    background: rgba(241, 200, 79, 0.12);
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests {
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-bottom {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-summary-card-total {
    background:
        linear-gradient(145deg, rgba(14, 23, 39, 0.98), rgba(18, 31, 54, 0.9)),
        radial-gradient(circle at top right, rgba(86, 179, 255, 0.14), transparent 32%);
    border-color: rgba(90, 176, 255, 0.14);
}

.npanel-shell.npanel-app .npanel-dashboard-summary-card-total .npanel-dashboard-summary-badge {
    color: #9bd5ff;
    border-color: rgba(90, 176, 255, 0.18);
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-card {
    border-radius: 28px;
    padding: 0.9rem 0.95rem 0.95rem;
    border: 1px solid rgba(108, 255, 156, 0.1);
    background:
        linear-gradient(155deg, rgba(12, 21, 16, 0.96), rgba(17, 24, 20, 0.9)),
        radial-gradient(circle at top right, rgba(39, 247, 126, 0.08), transparent 25%);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.npanel-shell.npanel-app .npanel-dashboard-overview-side .npanel-dashboard-fasttests {
    margin-bottom: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-overview-side .npanel-dashboard-fasttests-card {
    position: sticky;
    top: 1rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview-side .npanel-dashboard-fasttests-list {
    gap: 0.7rem;
}

.npanel-shell.npanel-app .npanel-dashboard-overview-side .npanel-dashboard-fasttests-item {
    min-height: 3.05rem;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.05rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(31, 214, 107, 0.95), rgba(15, 146, 76, 0.9));
    color: #03150b !important;
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(20, 181, 88, 0.18);
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-list {
    display: grid;
    gap: 0.75rem;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3rem;
    padding: 0.72rem 0.86rem;
    border-radius: 18px;
    border: 1px solid rgba(108, 255, 156, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: #edf8ef !important;
    text-decoration: none !important;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.npanel-shell.npanel-app .npanel-fasttest-modal-dialog {
    width: min(880px, calc(100vw - 1.6rem));
    max-width: min(880px, calc(100vw - 1.6rem));
}

.npanel-shell.npanel-app .npanel-fasttest-textarea {
    min-height: 20rem;
    max-height: 60vh;
    resize: vertical;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    overflow-x: hidden;
    line-height: 1.45;
    font-size: 0.92rem;
}

.npanel-shell.npanel-app .npanel-fasttest-modal-note {
    margin-bottom: 0;
}

.npanel-shell.npanel-app .npanel-fasttest-modal-note a {
    color: #7ad7ff;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-item:hover,
.npanel-shell.npanel-app .npanel-dashboard-fasttests-item:focus {
    transform: translateY(-1px);
    border-color: rgba(108, 255, 156, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.npanel-shell.npanel-app .npanel-dashboard-fasttests-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #aebdb4;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.npanel-shell.npanel-app .npanel-dashboard-kpis,
.npanel-shell.npanel-app .npanel-dashboard-tables {
    display: grid;
    gap: 1rem;
    margin-left: 0;
    margin-right: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-kpis {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.npanel-shell.npanel-app .npanel-dashboard-tables {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    align-items: start;
}

.npanel-shell.npanel-app .npanel-dashboard-kpis > [class*="col-"],
.npanel-shell.npanel-app .npanel-dashboard-tables > [class*="col-"] {
    max-width: none;
    width: 100%;
    flex: initial;
    padding-left: 0;
    padding-right: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-kpi .info-box,
.npanel-shell.npanel-app .npanel-dashboard-table .card {
    height: 100%;
    margin-bottom: 0;
}

.npanel-shell.npanel-app .npanel-dashboard-table .card-body {
    padding: 0.35rem 0.35rem 1rem !important;
}

.npanel-shell.npanel-app .npanel-dashboard-table .table-responsive {
    overflow-x: auto;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-page .container-fluid {
    max-width: none;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-card {
    overflow: hidden;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-card > .card-header {
    padding: 0;
    border-bottom: 1px solid rgba(108, 255, 156, 0.12);
    background: linear-gradient(180deg, rgba(10, 28, 18, 0.94), rgba(8, 18, 13, 0.82));
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs {
    gap: 0.55rem;
    flex-wrap: wrap;
    padding: 1rem;
    align-items: center;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs .nav-item {
    margin: 0;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs .nav-link.settings {
    border: 1px solid rgba(108, 255, 156, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #d7e7dc;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.18s ease;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs .nav-link.settings:hover,
.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs .nav-link.settings.active {
    background: linear-gradient(135deg, rgba(31, 214, 107, 0.95), rgba(15, 146, 76, 0.9));
    color: #03150b;
    border-color: rgba(108, 255, 156, 0.32);
    box-shadow: 0 12px 30px rgba(20, 181, 88, 0.22);
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-form-geral > .card-header {
    padding: 1rem 1.15rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-body {
    padding: 1.15rem !important;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero > div,
.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero-badge {
    border: 1px solid rgba(108, 255, 156, 0.12);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(16, 31, 23, 0.96), rgba(12, 21, 18, 0.9));
    padding: 1.15rem 1.2rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-kicker {
    display: inline-flex;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #73f1a4;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero h4 {
    margin: 0 0 0.45rem;
    font-size: 1.3rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero p {
    margin: 0;
    color: #9bb1a6;
    line-height: 1.65;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    text-align: right;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero-badge span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #73f1a4;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero-badge strong {
    font-size: 1.35rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
    margin: 0;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid > [class*="col-"] {
    width: 100%;
    max-width: none;
    flex: initial;
    padding: 0;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid .form-group {
    margin-bottom: 0;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid .form-control {
    min-height: 3.45rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid span {
    display: block;
    margin-top: 0.45rem;
    color: #9bb1a6;
    font-size: 0.92rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid .input-group-append .btn {
    min-width: 6rem;
    border-radius: 18px;
    margin-left: 0.45rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.15rem 1.15rem;
}

.npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-footer .btn {
    min-width: 11rem;
    border-radius: 16px;
    font-weight: 700;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-page .container-fluid {
    max-width: none;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-card {
    position: relative;
    overflow: hidden;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(31, 214, 107, 0.95), rgba(103, 255, 160, 0.18));
    z-index: 1;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-card > .card-header {
    position: relative;
    z-index: 2;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, rgba(10, 24, 17, 0.94), rgba(14, 28, 20, 0.78));
    border-bottom: 1px solid rgba(108, 255, 156, 0.12);
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-copy,
.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-meta {
    border: 1px solid rgba(108, 255, 156, 0.12);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(15, 30, 22, 0.98), rgba(10, 20, 15, 0.94));
    padding: 1.25rem 1.35rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-kicker {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: #73f1a4;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-copy h2 {
    margin: 0 0 0.45rem;
    font-size: 1.65rem;
    line-height: 1.12;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-copy p {
    margin: 0;
    color: #9bb1a6;
    line-height: 1.7;
    max-width: 58ch;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-meta {
    display: grid;
    gap: 0.9rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-meta-card {
    border-radius: 22px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 255, 156, 0.1);
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-meta-card span {
    display: inline-flex;
    margin-bottom: 0.35rem;
    color: #73f1a4;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-meta-card strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 0.2rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-meta-card small {
    display: block;
    color: #a2b7ac;
    line-height: 1.55;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-card > .card-header {
    padding: 1rem 1.2rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-body {
    padding: 1.2rem !important;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
    margin: 0;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-grid > [class*="col-"] {
    width: 100%;
    max-width: none;
    flex: initial;
    padding: 0;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field {
    margin-bottom: 0;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .input-group-text {
    min-width: 2.8rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(108, 255, 156, 0.12) !important;
    color: #dfe8e2;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .input-group,
.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .form-group {
    margin-bottom: 0 !important;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .generate {
    min-width: 3rem;
    border-width: 1px;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding-top: 0.95rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .custom-control {
    margin-top: 0.7rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .iti {
    width: 100%;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-field .select2-container {
    width: 100% !important;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.2rem 1.2rem;
}

.npanel-shell.npanel-app.npanel-test-shell .npanel-test-footer .btn {
    min-width: 12rem;
    min-height: 3rem;
    font-weight: 800;
    border-radius: 18px;
}

.npanel-shell.npanel-app .alert,
.npanel-shell.npanel-app .card,
.npanel-shell.npanel-app .info-box {
    overflow: hidden;
}

.npanel-shell .content-header h1,
.npanel-shell .card-title,
.npanel-shell h5,
.npanel-shell h6 {
    letter-spacing: -0.02em;
}

.npanel-shell .card,
.npanel-shell .info-box,
.npanel-shell .small-box,
.npanel-shell .callout,
.npanel-shell .alert,
.npanel-shell .modal-content,
.npanel-shell .dropdown-menu,
.npanel-shell .list-group-item,
.npanel-shell .table {
    border: 1px solid var(--np-line);
    box-shadow: var(--np-shadow);
}

.npanel-shell .card,
.npanel-shell .info-box,
.npanel-shell .small-box,
.npanel-shell .callout,
.npanel-shell .modal-content,
.npanel-shell .dropdown-menu {
    border-radius: 24px;
    background: var(--np-card);
    backdrop-filter: blur(14px);
}

.npanel-shell .card .card-header,
.npanel-shell .card .card-footer,
.npanel-shell .info-box,
.npanel-shell .small-box {
    background: transparent;
    border-color: var(--np-line);
}

.npanel-shell .info-box {
    overflow: hidden;
}

.npanel-shell .info-box::after,
.npanel-shell .card::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(25, 217, 107, 0.16), transparent 65%);
    pointer-events: none;
}

.npanel-shell .info-box-icon,
.npanel-shell .small-box .icon {
    border-radius: 20px;
}

.npanel-shell .btn,
.npanel-shell .badge,
.npanel-shell .form-control,
.npanel-shell .custom-select,
.npanel-shell .select2-container--default .select2-selection--single {
    border-radius: 16px !important;
}

.npanel-shell .btn-primary,
.npanel-shell .bg-primary,
.npanel-shell .badge-primary {
    background: linear-gradient(135deg, var(--np-primary), var(--np-primary-deep)) !important;
    border-color: transparent !important;
    color: #021008 !important;
}

.npanel-shell .btn-info,
.npanel-shell .bg-info,
.npanel-shell .badge-info {
    background: linear-gradient(135deg, #123420, #1a6338) !important;
    border-color: transparent !important;
}

.npanel-shell .btn-success,
.npanel-shell .bg-success,
.npanel-shell .badge-success {
    background: linear-gradient(135deg, #198754, #2dad74) !important;
    border-color: transparent !important;
}

.npanel-shell .btn-warning,
.npanel-shell .bg-warning,
.npanel-shell .badge-warning {
    background: linear-gradient(135deg, #33c96c, #94ffbc) !important;
    border-color: transparent !important;
    color: #041108 !important;
}

.npanel-shell .btn-secondary,
.npanel-shell .bg-secondary,
.npanel-shell .badge-secondary {
    background: linear-gradient(135deg, #102118, #1b3527) !important;
    border-color: transparent !important;
}

.npanel-shell .form-control,
.npanel-shell .custom-select,
.npanel-shell .select2-container--default .select2-selection--single,
.npanel-shell .select2-container--default .select2-selection--multiple {
    border: 1px solid rgba(108, 255, 156, 0.14) !important;
    background: rgba(10, 21, 14, 0.92) !important;
    color: var(--np-text) !important;
    min-height: 46px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.npanel-shell .form-control:focus,
.npanel-shell .custom-select:focus {
    border-color: rgba(25, 217, 107, 0.45) !important;
    box-shadow: 0 0 0 0.2rem rgba(25, 217, 107, 0.12) !important;
}

.npanel-shell .table thead th {
    border-bottom: 0;
    background: rgba(25, 217, 107, 0.08);
    color: var(--np-primary);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.npanel-shell .table td,
.npanel-shell .table th {
    border-top-color: rgba(31, 42, 55, 0.06);
    vertical-align: middle;
}

.npanel-shell .alert {
    border-radius: 22px;
}

.npanel-shell .breadcrumb {
    background: rgba(11, 28, 18, 0.72);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
}

.npanel-shell .login100-form,
.npanel-shell .wrap-login100 {
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(7, 14, 10, 0.96), rgba(11, 22, 15, 0.96)) !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
    overflow: hidden;
}

.npanel-shell .container-login100 {
    position: relative;
    padding: 2rem;
    background-position: center;
    background-size: cover;
}

.npanel-shell .container-login100::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(2, 8, 5, 0.86), rgba(8, 27, 14, 0.74) 55%, rgba(16, 112, 55, 0.38)),
        radial-gradient(circle at top right, rgba(122, 255, 167, 0.12), transparent 30%);
}

.npanel-shell .container-login100 > * {
    position: relative;
    z-index: 1;
}

.npanel-shell.npanel-auth {
    background:
        radial-gradient(circle at 14% 18%, rgba(31, 255, 124, 0.18), transparent 26%),
        radial-gradient(circle at 82% 20%, rgba(108, 255, 156, 0.14), transparent 24%),
        radial-gradient(circle at 78% 82%, rgba(24, 201, 102, 0.16), transparent 22%),
        linear-gradient(135deg, #010503 0%, #07100a 42%, #0b2114 100%);
}

.npanel-shell.npanel-auth .container-login100 {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.npanel-shell.npanel-auth .container-login100::before {
    background:
        linear-gradient(135deg, rgba(1, 6, 4, 0.88), rgba(5, 16, 10, 0.7) 45%, rgba(17, 110, 56, 0.3) 100%),
        radial-gradient(circle at top right, rgba(104, 255, 160, 0.12), transparent 32%);
}

.npanel-shell.npanel-auth .wrap-login100 {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: clamp(1rem, 1.4vw, 1.4rem) !important;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    gap: clamp(1rem, 1.8vw, 2rem);
    align-items: stretch;
    background:
        linear-gradient(145deg, rgba(13, 33, 21, 0.9), rgba(6, 15, 10, 0.96)),
        rgba(5, 12, 8, 0.92) !important;
    border: 0;
    border-radius: 0 !important;
    backdrop-filter: blur(26px);
}

.npanel-shell.npanel-auth .npanel-auth-copy {
    display: none !important;
}

.npanel-shell.npanel-auth .wrap-login100 {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.npanel-shell.npanel-auth .login100-form {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0;
    padding: clamp(1.8rem, 2.6vw, 3rem) clamp(1.4rem, 2.1vw, 2.6rem) clamp(1.4rem, 2vw, 2rem);
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: stretch !important;
    align-self: stretch;
    transform: none;
    background: linear-gradient(180deg, rgba(6, 12, 9, 0.98), rgba(10, 20, 14, 0.96)) !important;
    border: 1px solid rgba(108, 255, 156, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24) !important;
    border-radius: 34px !important;
}

.npanel-shell.npanel-auth .login100-form::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0b8f43, #19d96b, #8dffb7);
    opacity: 0.95;
}

.npanel-auth-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: clamp(2.2rem, 5vw, 5.8rem) clamp(1.6rem, 3vw, 3.5rem) clamp(2rem, 3vw, 3.2rem) clamp(2rem, 4vw, 4.8rem);
    color: #edf8ef;
    overflow: hidden;
}

.npanel-auth-copy::before {
    content: "";
    position: absolute;
    inset: auto -12% -12% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 217, 107, 0.28), transparent 68%);
    pointer-events: none;
}

.npanel-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(16, 42, 26, 0.6);
    border: 1px solid rgba(108, 255, 156, 0.18);
    color: #dbffe7;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.npanel-auth-badge::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #19d96b, #8dffb7);
    box-shadow: 0 0 0 0.22rem rgba(25, 217, 107, 0.18);
}

.npanel-auth-title {
    margin: 1.2rem 0 0;
    color: #ffffff;
    max-width: 8.8ch;
    font-size: clamp(2.3rem, min(5.2vw, 12.5dvh), 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.npanel-auth-subtitle {
    max-width: 34rem;
    margin: 1.15rem 0 0;
    color: rgba(218, 239, 225, 0.78);
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
    line-height: 1.62;
}

.npanel-auth-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 0;
}

.npanel-auth-highlight {
    min-height: 0;
    padding: 0.95rem 0.95rem 0.9rem;
    border-radius: 22px;
    background: rgba(16, 31, 22, 0.7);
    border: 1px solid rgba(108, 255, 156, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.npanel-auth-highlight strong {
    display: block;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 600;
}

.npanel-auth-highlight span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(214, 233, 220, 0.76);
    font-size: 0.83rem;
    line-height: 1.45;
}

.npanel-auth-form-intro {
    margin-bottom: 1.55rem;
    text-align: center;
}

.npanel-auth-form-intro span {
    display: inline-block;
    color: #6cff9c;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.npanel-auth-form-intro h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.6rem, 1.9vw, 2.1rem);
    line-height: 1.06;
    color: #f3fff6;
    text-align: center;
}

.npanel-auth-form-intro p {
    margin: 0.75rem 0 0;
    color: #a3b7aa;
    font-size: 0.92rem;
    line-height: 1.58;
    text-align: center;
}

.npanel-shell .login100-form-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem 0;
}

.npanel-shell .login100-form-avatar img {
    max-width: min(100%, 360px);
    max-height: 120px;
    object-fit: contain;
}

.npanel-shell.npanel-auth .login100-form-avatar {
    justify-content: flex-start;
    padding: 0 0 1.5rem;
    width: 100% !important;
    height: auto !important;
}

.npanel-shell.npanel-auth .login100-form-avatar img {
    max-width: 210px;
    max-height: 72px;
}

.npanel-shell .wrap-input100,
.npanel-shell .input-group,
.npanel-shell .note-editor.note-frame {
    border-radius: 18px !important;
}

.npanel-shell.npanel-auth .wrap-input100 {
    width: 100% !important;
    background: linear-gradient(180deg, rgba(18, 30, 22, 0.98), rgba(22, 35, 26, 0.98));
    border: 1px solid rgba(108, 255, 156, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 30px rgba(0, 0, 0, 0.12);
}

.npanel-shell.npanel-auth .input100 {
    color: #f2fff4 !important;
    -webkit-text-fill-color: #f2fff4 !important;
    caret-color: #6cff9c;
    font-size: 0.98rem;
    font-weight: 500;
    background: transparent !important;
}

.npanel-shell.npanel-auth .input100::placeholder {
    color: rgba(157, 179, 163, 0.62);
}

.npanel-shell.npanel-auth .symbol-input100 {
    color: rgba(108, 255, 156, 0.92);
}

.npanel-shell.npanel-auth .input100:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.npanel-shell.npanel-auth input.input100:-webkit-autofill,
.npanel-shell.npanel-auth input.input100:-webkit-autofill:hover,
.npanel-shell.npanel-auth input.input100:-webkit-autofill:focus {
    -webkit-text-fill-color: #f2fff4 !important;
    box-shadow: 0 0 0 1000px rgba(18, 30, 22, 1) inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

.npanel-shell .login100-form-btn {
    background: linear-gradient(135deg, var(--np-primary), var(--np-primary-deep)) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 32px rgba(25, 217, 107, 0.24);
}

.npanel-shell.npanel-auth .login100-form-btn {
    width: 100%;
    min-height: 58px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.npanel-shell.npanel-auth .container-login100-form-btn,
.npanel-shell.npanel-auth .npanel-auth-form-intro,
.npanel-shell.npanel-auth .npanel-auth-links,
.npanel-shell.npanel-auth .npanel-auth-meta,
.npanel-shell.npanel-auth .contact100-form-checkbox,
.npanel-shell.npanel-auth .g-recaptcha {
    width: 100% !important;
}

.npanel-shell.npanel-auth .login100-form-btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
    box-shadow: 0 18px 36px rgba(25, 217, 107, 0.34);
}

.npanel-auth-links {
    margin-top: 1.25rem;
    text-align: center;
    color: #9cb3a2;
}

.npanel-auth-links a,
.npanel-shell.npanel-auth .txt1 a {
    color: #6cff9c;
    font-weight: 600;
}

.npanel-auth-meta {
    margin-top: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: #90a598;
    font-size: 0.85rem;
}

.npanel-auth-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.xiu-auth-field {
    width: 100%;
    margin-bottom: 0.9rem;
}

.xiu-input-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 0.45rem;
}

.xiu-input-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #f4fff6;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.xiu-inline-link {
    padding: 0;
    color: #5ea2ff;
    font-size: 0.82rem;
    font-weight: 600;
    background: transparent;
}

.xiu-inline-link:hover {
    color: #8ec0ff;
}

.xiu-input-shell {
    border-radius: 16px !important;
}

.xiu-verified-strip {
    width: 100%;
    min-height: 44px;
    margin: 0.25rem 0 1rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(108, 255, 156, 0.1);
    color: #7dc5ff;
    font-size: 0.92rem;
    font-weight: 600;
}

.npanel-shell.npanel-auth .contact100-form-checkbox {
    margin-top: 0.5rem;
    color: #9cb3a2;
}

.npanel-shell.npanel-auth .float-r,
.npanel-shell.npanel-auth .powered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: calc(100vw - 2rem);
    bottom: 1.45rem;
    margin: 0;
    color: rgba(220, 255, 229, 0.72);
    text-align: center;
}

.npanel-shell.npanel-auth .float-r {
    bottom: 3rem;
    font-weight: 500;
}

.npanel-shell.npanel-auth .powered a {
    color: #8dffb7;
}

.xiu-brand-mark {
    width: 100%;
    text-align: center;
}

.xiu-brand-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #6cff9c;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.xiu-brand-name {
    color: #f1fff4;
    font-size: clamp(2.3rem, 4.2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-align: center;
    width: 100%;
}

.xiu-brand-subtitle {
    margin-top: 0.7rem;
    color: #9eb3a4;
    font-size: 0.96rem;
    line-height: 1.65;
}

.xiu-auth-logo-wrap {
    margin: 0.2rem 0 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xiu-auth-logo {
    max-width: min(100%, 280px);
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3));
}

.xiu-auth-logo-fallback {
    min-height: 2.8rem;
    padding: 0.7rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(108, 255, 156, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f2fff4;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .npanel-shell.npanel-app .main-header.navbar {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .npanel-shell.npanel-app .main-header .navbar-nav {
        gap: 0.15rem;
    }

    .npanel-shell.npanel-app .content-header .container-fluid,
    .npanel-shell.npanel-app .content .container-fluid {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .npanel-shell.npanel-app .npanel-template-hero,
    .npanel-shell.npanel-app .npanel-template-grid {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero,
    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-grid {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-hero-badge {
        text-align: left;
    }

    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero,
    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-grid {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-overview.has-fasttests {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-clients-top {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-summary-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .npanel-shell.npanel-app .brand-link .brand-image {
        width: 2.5rem;
        height: 2.5rem;
    }

    .npanel-shell.npanel-app .content-header {
        padding-top: 0.8rem;
    }

    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs {
        padding: 0.75rem;
        gap: 0.45rem;
    }

    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-tabs .nav-link.settings {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 18px;
    }

    .npanel-shell.npanel-app.npanel-settings-shell .npanel-settings-general-body {
        padding: 0.9rem !important;
    }

    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-body {
        padding: 0.9rem !important;
    }

    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-hero-copy h2 {
        font-size: 1.35rem;
    }

    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-footer {
        justify-content: stretch;
    }

    .npanel-shell.npanel-app.npanel-test-shell .npanel-test-footer .btn {
        width: 100%;
    }

    .npanel-shell.npanel-app .npanel-dashboard-kpis,
    .npanel-shell.npanel-app .npanel-dashboard-tables,
    .npanel-shell.npanel-app .npanel-dashboard-summary-metrics {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-hero-copy h3 {
        font-size: 1.5rem;
    }

    .npanel-shell.npanel-app .npanel-dashboard-overview .npanel-dashboard-summary-metrics {
        grid-template-columns: 1fr;
    }

    .npanel-shell.npanel-app .npanel-dashboard-summary-card {
        padding: 1rem;
    }

    .npanel-shell.npanel-app .npanel-dashboard-summary-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .npanel-shell.npanel-app .npanel-dashboard-fasttests-head,
    .npanel-shell.npanel-app .npanel-dashboard-fasttests-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .npanel-shell.npanel-app .main-header .nav-link,
    .npanel-shell.npanel-app .npanel-quick-dropdown > .btn {
        padding-left: 0.72rem;
        padding-right: 0.72rem;
    }

    .npanel-shell.npanel-app .npanel-template-page .card-body {
        padding: 0.9rem;
    }

    .npanel-shell.npanel-app .npanel-template-note,
    .npanel-shell.npanel-app .npanel-template-help {
        padding: 1rem;
    }

    .npanel-shell.npanel-app .npanel-template-textarea {
        min-height: 220px !important;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .card-body.table-responsive {
        overflow-x: visible;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .row:first-child,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .filters .row {
        row-gap: 0.85rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .dataTables_length,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .dataTables_info,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .dataTables_paginate {
        text-align: center;
    }
}

@media (max-height: 860px) {
    .npanel-shell.npanel-app .content-header {
        padding-top: 0.75rem;
    }

    .npanel-shell.npanel-app .content-wrapper {
        padding-bottom: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .npanel-shell.npanel-auth .container-login100 {
        width: 100%;
        padding: 0;
    }

    .npanel-shell.npanel-auth .wrap-login100 {
        min-height: 0;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 0.9rem !important;
        border-radius: 0 !important;
    }

    .npanel-shell.npanel-auth .login100-form {
        transform: none;
    }

    .npanel-auth-copy {
        min-height: 0;
        padding: 1.35rem 1.15rem 0.5rem;
    }

    .npanel-auth-highlights {
        grid-template-columns: 1fr;
        margin-top: 1.1rem;
    }

    .npanel-shell.npanel-auth .login100-form {
        padding: 1.45rem 1.2rem 1.15rem;
    }
}

@media (max-width: 1366px) {
    .npanel-shell.npanel-auth .wrap-login100 {
        grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    }

    .npanel-auth-title {
        font-size: clamp(2.2rem, min(4.8vw, 11.5dvh), 4.8rem);
    }
}

@media (max-height: 860px) {
    .npanel-shell.npanel-auth .wrap-login100 {
        padding: 0.85rem !important;
        gap: 0.85rem;
    }

    .npanel-auth-copy {
        padding: 1.6rem 1.4rem 1.1rem 1.8rem;
    }

    .npanel-auth-title {
        font-size: clamp(2.05rem, min(4.4vw, 10dvh), 4.3rem);
        margin-top: 0.9rem;
    }

    .npanel-auth-subtitle {
        margin-top: 0.85rem;
        line-height: 1.5;
    }

    .npanel-auth-highlights {
        margin-top: 1rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .npanel-auth-highlight {
        padding: 0.8rem 0.8rem 0.75rem;
    }

    .npanel-shell.npanel-auth .login100-form {
        padding: 1.6rem 1.25rem 1.2rem;
    }
}

@media (max-height: 760px) {
    .npanel-shell.npanel-auth .container-login100 {
        overflow-y: auto;
    }

    .npanel-shell.npanel-auth .wrap-login100 {
        min-height: auto;
    }

    .npanel-auth-copy {
        padding: 1.25rem 1.1rem 0.8rem 1.35rem;
    }

    .npanel-auth-title {
        font-size: clamp(1.9rem, min(4vw, 8.8dvh), 3.4rem);
        line-height: 0.95;
    }

    .npanel-auth-subtitle {
        font-size: 0.88rem;
    }

    .npanel-auth-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .npanel-auth-form-intro h2 {
        font-size: 1.55rem;
    }

    .npanel-shell.npanel-auth .login100-form {
        padding: 1.35rem 1.05rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .limiter,
    .npanel-shell.npanel-auth .container-login100 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        align-items: stretch;
        overflow-x: hidden;
    }

    .npanel-shell.npanel-auth .container-login100::before {
        opacity: 0.55;
    }

    .npanel-shell.npanel-auth .wrap-login100 {
        display: block !important;
        width: 100%;
        max-width: none;
        min-height: 100vh;
        min-height: 100dvh;
        gap: 0;
        padding: 0 !important;
        background: linear-gradient(180deg, rgba(3, 10, 7, 0.96), rgba(4, 14, 9, 0.98));
        overflow-x: hidden;
    }

    .npanel-auth-copy {
        padding: 1.1rem 1rem 0.4rem;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .npanel-auth-copy::before,
    .npanel-auth-highlights,
    .npanel-auth-subtitle {
        display: none;
    }

    .npanel-auth-title {
        font-size: 1.75rem;
        line-height: 0.96;
        max-width: 12ch;
        margin-top: 0.3rem;
    }

    .npanel-shell.npanel-auth .wrap-login100 {
        border-radius: 0 !important;
    }

    .npanel-shell.npanel-auth .login100-form {
        display: flex !important;
        flex-direction: column;
        width: calc(100vw - 1rem) !important;
        max-width: calc(100vw - 1rem) !important;
        min-width: 0 !important;
        margin: 0 auto 0.8rem !important;
        padding: 1.15rem 1rem 1rem;
        border-radius: 24px !important;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
        transform: none !important;
    }

    .npanel-shell.npanel-auth .login100-form-avatar {
        width: 100% !important;
        height: auto !important;
        padding-bottom: 0.8rem !important;
    }

    .xiu-brand-mark {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .xiu-brand-kicker {
        font-size: 0.74rem;
        letter-spacing: 0.24em;
    }

    .xiu-brand-name {
        font-size: 2rem;
        line-height: 0.98;
    }

    .xiu-brand-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .npanel-auth-form-intro {
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .npanel-auth-form-intro h2 {
        font-size: 1.35rem;
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .npanel-auth-form-intro p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .xiu-auth-logo-wrap {
        justify-content: center;
        margin: 0.2rem 0 1.15rem;
    }

    .xiu-auth-logo {
        max-width: 148px;
        max-height: 148px;
    }

    .npanel-shell.npanel-auth .wrap-input100 {
        width: 100%;
        margin-bottom: 0.78rem;
    }

    .npanel-shell.npanel-auth .input100 {
        width: 100%;
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
        font-size: 1rem;
    }

    .npanel-auth-form-intro,
    .npanel-auth-links,
    .npanel-auth-meta {
        width: 100%;
    }

    .npanel-shell.npanel-auth .login100-form-btn {
        min-height: 3.35rem;
        font-size: 1.05rem;
    }

    .npanel-auth-links {
        padding-top: 0.8rem !important;
        padding-bottom: 0 !important;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .npanel-auth-meta {
        margin-top: 1rem;
        gap: 0.55rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .npanel-auth-meta span {
        width: 100%;
        justify-content: flex-start;
    }

    .npanel-shell.npanel-auth .float-r,
    .npanel-shell.npanel-auth .powered {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        bottom: 0.35rem;
        text-align: center;
    }

    .npanel-shell.npanel-auth .float-r {
        bottom: 1.9rem;
    }

    .npanel-shell.npanel-auth .powered {
        bottom: 0.55rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .card-body.table-responsive {
        padding: 0.8rem 0.72rem 1rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tr,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table td {
        width: 100% !important;
        max-width: 100% !important;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table thead,
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tfoot {
        display: none;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table {
        border: 0 !important;
        background: transparent !important;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody {
        display: grid;
        gap: 0.8rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.58rem;
        padding: 0.8rem;
        border-radius: 22px;
        border: 1px solid rgba(108, 255, 156, 0.14);
        background:
            radial-gradient(circle at top right, rgba(25, 217, 107, 0.08), transparent 38%),
            linear-gradient(180deg, rgba(18, 28, 41, 0.98), rgba(15, 24, 36, 0.99));
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0.22rem;
        min-height: 0;
        padding: 0.68rem 0.72rem !important;
        border: 1px solid rgba(108, 255, 156, 0.08) !important;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.03);
        color: #f0fbf2;
        text-align: left !important;
        vertical-align: middle;
        white-space: normal !important;
        word-break: break-word;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td::before {
        content: attr(data-label);
        display: block;
        color: rgba(108, 255, 156, 0.88);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(2),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(9),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(10),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(11) {
        grid-column: 1 / -1;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(1) {
        order: 1;
        width: fit-content !important;
        min-width: 3.5rem;
        padding: 0.38rem 0.65rem !important;
        border-radius: 999px;
        background: rgba(108, 255, 156, 0.08);
        border-color: rgba(108, 255, 156, 0.18) !important;
        font-size: 0.92rem;
        font-weight: 700;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(1)::before {
        margin-bottom: 0.1rem;
        font-size: 0.58rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(2) {
        order: 3;
        padding-top: 0.2rem !important;
        padding-bottom: 0.15rem !important;
        background: transparent;
        border: 0 !important;
        box-shadow: none;
        font-size: 1.12rem;
        font-weight: 700;
        line-height: 1.15;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(2)::before {
        margin-bottom: 0.18rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(3) {
        order: 4;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(4) {
        order: 9;
        grid-column: 1 / -1;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(5) {
        order: 5;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(6) {
        order: 6;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(7) {
        order: 7;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(8) {
        order: 8;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(3),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(4),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(5),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(6),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(7),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(8) {
        min-height: 3.35rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(5),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(6) {
        background: rgba(14, 24, 34, 0.92);
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(9) {
        order: 10;
        min-height: 0;
        background: rgba(255, 255, 255, 0.02);
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td.npanel-empty-cell:nth-child(4),
    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td.npanel-empty-cell:nth-child(9) {
        display: none;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-mobile-card-table tbody td:nth-child(10) {
        order: 2;
        grid-column: auto;
        justify-self: end;
        width: fit-content !important;
        min-width: 5.5rem;
        min-height: 0;
        padding: 0.28rem 0 !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
        background: transparent;
        border: 0 !important;
        box-shadow: none;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell {
        order: 11;
        display: block !important;
        padding: 0.35rem 0 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell::before {
        width: 100%;
        margin-bottom: 0.28rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell .actions {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        justify-items: center;
        align-items: stretch;
        margin: 0 !important;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell .btn {
        width: 3.15rem;
        max-width: 3.15rem;
        min-width: 3.15rem;
        min-height: 3.15rem;
        margin: 0;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(27, 42, 59, 0.98), rgba(18, 29, 41, 0.98));
        border: 1px solid rgba(108, 255, 156, 0.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .npanel-client-actions-cell .btn i {
        font-size: 1rem !important;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .dataTables_paginate {
        margin-top: 0.75rem;
    }

    .npanel-shell.npanel-app.npanel-iptv-list-shell .dataTables_wrapper .dataTables_paginate .paginate_button {
        min-width: 2.5rem;
    }
}

.npanel-shell .main-footer {
    margin-top: 1rem;
    background: transparent;
    border-top: 0;
    color: var(--np-muted);
}

.npanel-shell.dark-mode {
    --np-bg: #101823;
    --np-surface: #16202e;
    --np-card: rgba(20, 31, 45, 0.88);
    --np-card-strong: #13202f;
    --np-text: #edf2f7;
    --np-muted: #9fb0c4;
    --np-line: rgba(237, 242, 247, 0.08);
    background:
        radial-gradient(circle at top left, rgba(242, 176, 94, 0.16), transparent 25%),
        radial-gradient(circle at top right, rgba(15, 139, 141, 0.18), transparent 30%),
        linear-gradient(180deg, #111a26 0%, #0b121c 100%);
}

.npanel-shell.dark-mode .content-wrapper,
.npanel-shell.dark-mode .card,
.npanel-shell.dark-mode .info-box,
.npanel-shell.dark-mode .small-box,
.npanel-shell.dark-mode .modal-content,
.npanel-shell.dark-mode .dropdown-menu,
.npanel-shell.dark-mode .alert,
.npanel-shell.dark-mode .callout,
.npanel-shell.dark-mode .table {
    color: var(--np-text);
    background: var(--np-card) !important;
}

.npanel-shell.dark-mode .form-control,
.npanel-shell.dark-mode .custom-select,
.npanel-shell.dark-mode .select2-container--default .select2-selection--single,
.npanel-shell.dark-mode .select2-container--default .select2-selection--multiple {
    color: var(--np-text);
    background: rgba(15, 22, 33, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
