* {
    box-sizing: border-box;
}

:root {
    --navy: #071426;
    --navy2: #0b1d35;
    --navy3: #102844;
    --panel: #0e2139;
    --panel2: #0a192c;
    --blue: #1976d2;
    --blue-light: #55a9ff;
    --blue-soft: #153b63;
    --border: #244768;
    --text: #eaf3fc;
    --muted: #9db2c8;
    --green: #62d69a;
    --red: #ff7474;
    --gold: #e6bf62;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -200px, #174b78 0, transparent 430px),
        linear-gradient(180deg, #071426 0, #050d18 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: var(--blue-light);
    text-decoration: none;
}

a:hover {
    color: #91caff;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background:
        linear-gradient(180deg, #102b4b 0%, #091a2e 100%);
    border-bottom: 1px solid #315779;
    box-shadow: 0 5px 20px rgba(0,0,0,.35);
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
    white-space: nowrap;
}

.brand span {
    color: #63b4ff;
}

.brand:hover {
    color: #fff;
}

.topnav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    flex-wrap: wrap;
}

.topnav a {
    display: block;
    padding: 10px 12px;
    color: #c6d8e9;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background .15s, color .15s;
}

.topnav a:hover {
    color: #fff;
    background: #173b5e;
}

.topnav a.active {
    color: #fff;
    background: #1b4d79;
}

.topnav .register-link {
    margin-left: 7px;
    color: #fff;
    background: linear-gradient(180deg, #258de8, #1268b7);
    border: 1px solid #379af0;
    box-shadow: inset 0 1px rgba(255,255,255,.15);
}

.topnav .register-link:hover {
    background: linear-gradient(180deg, #319bf7, #1874c8);
}

/* =========================
   MAIN
   ========================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 22px;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 22px 60px;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 22px 28px;
    text-align: center;
}

.hero:before {
    content: "X";
    display: flex;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid #4d9bdb;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #3499ec, #0d4c81 65%, #082d50);
    box-shadow:
        0 0 0 7px rgba(42,139,218,.08),
        0 14px 35px rgba(0,0,0,.35);
    color: #fff;
    font-size: 39px;
    font-weight: 700;
    font-family: Georgia, serif;
}

.hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #a9bdd1;
    font-size: 17px;
}

/* =========================
   CARDS / PANELS
   ========================= */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.card,
.doc-section,
.faq-item,
.login-box {
    background:
        linear-gradient(180deg, rgba(17,43,70,.96), rgba(9,25,43,.97));
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow:
        0 14px 35px rgba(0,0,0,.22),
        inset 0 1px rgba(255,255,255,.025);
}

.card {
    padding: 24px;
}

.card h2,
.card h3,
.doc-section h2,
.faq-item h3 {
    margin-top: 0;
    color: #fff;
}

.card p,
.faq-item p {
    color: #aabdd0;
}

.card > h2:first-child,
.card > h3:first-child {
    padding-bottom: 12px;
    border-bottom: 1px solid #23425f;
}

/* =========================
   BUTTONS
   ========================= */

.button,
button {
    display: inline-block;
    border: 1px solid #328fdf;
    border-radius: 5px;
    padding: 10px 17px;
    background: linear-gradient(180deg, #2389df, #1269b7);
    color: #fff !important;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: .15s ease;
}

.button:hover,
button:hover {
    background: linear-gradient(180deg, #329bf0, #1878cb);
    border-color: #59adf5;
}

.button.secondary {
    background: #183956;
    border-color: #315775;
}

button.danger,
.danger {
    background: #8f3138;
    border-color: #bd555d;
}

button.danger:hover,
.danger:hover {
    background: #a73b44;
}

/* =========================
   FORMS
   ========================= */

label {
    display: block;
    margin: 14px 0 6px;
    color: #dce9f5;
    font-weight: 600;
}

input,
select,
textarea {
    max-width: 100%;
    padding: 11px 12px;
    border: 1px solid #31516e;
    border-radius: 5px;
    outline: none;
    background: #061321;
    color: #fff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #398fd8;
    box-shadow: 0 0 0 3px rgba(42,137,218,.12);
}

.login-box {
    width: calc(100% - 44px);
    max-width: 470px;
    margin: 30px auto 65px;
    padding: 32px;
}

.login-box h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 25px;
}

.login-box .subtitle {
    margin: 0 0 24px;
    color: var(--muted);
}

.login-box input {
    width: 100%;
    padding: 12px;
}

.login-box button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
}

.register-cta {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.register-cta p {
    margin: 0 0 13px;
    color: var(--muted);
}

/* =========================
   REGISTER
   ========================= */

body.register-page {
    display: block !important;
    padding: 0 !important;
    min-height: 100vh;
}

.register-page .site-header {
    width: 100%;
}

.register-page-content {
    min-height: calc(100vh - 150px);
    padding: 48px 22px 70px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.register-page-content > .card {
    width: 100%;
    max-width: 540px;
}

.register-page-content .brand {
    color: #69b8ff;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
}

.register-page-content h1 {
    margin: 8px 0;
    text-align: center;
    font-size: 30px;
}

.register-page-content .subtitle {
    margin-bottom: 25px;
    color: var(--muted);
    text-align: center;
}

.register-page-content input {
    width: 100%;
}

.register-page-content button {
    width: 100%;
    margin-top: 20px;
    padding: 13px;
}

.register-page-content .bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* =========================
   MESSAGES
   ========================= */

.msg {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 5px;
    border: 1px solid;
}

.msg.ok,
.msg.success {
    color: #a8efc8;
    background: rgba(31,111,72,.23);
    border-color: #327552;
}

.msg.err,
.msg.error {
    color: #ffc1c1;
    background: rgba(125,37,43,.25);
    border-color: #824149;
}

.small {
    color: #8fa7bd;
    font-size: 12px;
}

.level {
    color: #79c2ff;
    font-weight: 700;
}

/* =========================
   DOCUMENTATION
   ========================= */

.page-title {
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #1e3b57;
}

.page-title h1 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 36px;
}

.page-title p {
    max-width: 800px;
    margin: 0;
    color: var(--muted);
}

.docs {
    display: grid;
    grid-template-columns: 235px minmax(0,1fr);
    gap: 28px;
}

.docs-menu {
    position: sticky;
    top: 105px;
    align-self: start;
    overflow: hidden;
    border: 1px solid #234461;
    border-radius: 7px;
    background: #091a2d;
}

.docs-menu:before {
    content: "CService";
    display: block;
    padding: 13px 14px;
    background: #123b61;
    color: #fff;
    font-weight: 700;
}

.docs-menu a {
    display: block;
    padding: 9px 13px;
    color: #adc0d2;
    border-bottom: 1px solid #193650;
}

.docs-menu a:last-child {
    border-bottom: 0;
}

.docs-menu a:hover {
    color: #fff;
    background: #102b47;
}

.doc-section {
    margin-bottom: 20px;
    padding: 25px;
}

.command {
    display: block;
    margin: 10px 0;
    padding: 12px 14px;
    overflow: auto;
    border: 1px solid #294a67;
    border-radius: 5px;
    background: #040c15;
    color: #77c0ff;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
}

code {
    font-family: Consolas, Monaco, monospace;
}

.note {
    margin: 18px 0;
    padding: 13px 16px;
    border-left: 3px solid #2990e5;
    background: #0b2035;
    color: #bdcddd;
}

/* =========================
   FAQ
   ========================= */

.faq-item {
    margin-bottom: 14px;
    padding: 21px;
}

.faq-item h3 {
    margin: 0 0 8px;
}

.faq-item p {
    margin: 0;
}

/* =========================
   SERVER BOX
   ========================= */

.server-box {
    max-width: 760px;
    margin: 35px auto 0;
    padding: 17px 20px;
    border: 1px solid #29506f;
    border-radius: 6px;
    background: #081a2b;
    color: #9eb4c9;
    text-align: center;
}

.server-box strong {
    color: #fff;
}

/* =========================
   TABLES / CHANNEL ADMIN
   ========================= */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

th,
td {
    padding: 11px 10px;
    border-bottom: 1px solid #24435f;
    text-align: left;
}

th {
    color: #8ebee7;
    background: #0a1b2e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

tr:hover td {
    background: rgba(27,72,108,.18);
}

.inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    margin-top: 55px;
    border-top: 1px solid #1e3c57;
    background: #050d17;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 22px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #8299af;
    font-size: 13px;
}

.footer-inner strong {
    color: #cbd9e7;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
    .header-inner {
        padding-top: 13px;
        padding-bottom: 13px;
        flex-direction: column;
        gap: 8px;
    }

    .topnav {
        justify-content: center;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .docs {
        grid-template-columns: 1fr;
    }

    .docs-menu {
        position: static;
    }

    .hero {
        padding-top: 45px;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand {
        font-size: 20px;
    }

    .topnav {
        width: 100%;
        gap: 2px;
    }

    .topnav a {
        padding: 8px 7px;
        font-size: 12px;
    }

    .topnav .register-link {
        margin-left: 0;
    }

    .container,
    .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero:before {
        width: 62px;
        height: 62px;
        font-size: 32px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .login-box {
        width: calc(100% - 28px);
        padding: 23px;
    }

    .register-page-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .card,
    .doc-section {
        padding: 18px;
    }

    .footer-inner {
        flex-direction: column;
    }

    table {
        font-size: 12px;
    }
}


/* ============================================================
   UNDERNET.CLOUD CSERVICE CONTROL CENTER V2
   ============================================================ */

.premium-brand {
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-x {
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid #52a9ec;
    background:linear-gradient(145deg,#2498eb,#073d6c);
    box-shadow:0 0 0 4px rgba(53,155,234,.08);
    color:white;
    font-family:Georgia,serif;
    font-size:24px;
}

.brand-copy {
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.brand-copy strong {
    font-size:17px;
    letter-spacing:.4px;
}

.brand-copy small {
    margin-top:5px;
    color:#789ab8;
    font-size:9px;
    font-weight:bold;
    letter-spacing:2px;
}

.network-strip {
    border-top:1px solid rgba(255,255,255,.04);
    background:#06111e;
}

.network-strip-inner {
    max-width:1200px;
    min-height:34px;
    margin:auto;
    padding:0 22px;
    display:flex;
    align-items:center;
    gap:24px;
    color:#7691a9;
    font-size:10px;
    letter-spacing:.5px;
}

.network-strip strong {
    color:#b8cee1;
}

.status-online {
    color:#74d9a1;
    font-weight:bold;
}

.status-online i,
.status-dot,
.sidebar-service-info i {
    display:inline-block;
    width:7px;
    height:7px;
    margin-right:6px;
    border-radius:50%;
    background:#49d889;
    box-shadow:0 0 9px rgba(73,216,137,.8);
}

.network-strip .powered {
    margin-left:auto;
}

.account-link {
    background:#163b5d;
    color:#fff!important;
}

.portal-home {
    max-width:1160px;
    margin:auto;
    padding:0 22px 70px;
}

.premium-hero {
    padding:58px 20px 42px;
    text-align:center;
}

.hero-kicker,
.eyebrow {
    color:#5fa9e4;
    font-size:10px;
    font-weight:bold;
    letter-spacing:2px;
}

.hero-x {
    width:76px;
    height:76px;
    margin:17px auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid #4aa3e7;
    background:
        radial-gradient(circle at 35% 25%,#38a5f2,#075188 65%,#052c4d);
    box-shadow:
        0 0 0 7px rgba(45,144,219,.07),
        0 18px 45px rgba(0,0,0,.35);
    color:#fff;
    font:700 41px Georgia,serif;
}

.premium-hero h1 {
    margin:0;
    color:#fff;
    font-size:44px;
    letter-spacing:-1px;
}

.premium-hero > p {
    max-width:680px;
    margin:12px auto 0;
    color:#91a9be;
    font-size:16px;
}

.hero-meta {
    margin-top:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    color:#718ba3;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.hero-meta b {
    color:#b8cee0;
}

.meta-separator {
    margin:0 8px;
    color:#315875;
}

.service-layout {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:24px;
}

.panel-premium {
    border:1px solid #244b6a;
    border-radius:9px;
    background:
        linear-gradient(145deg,rgba(14,38,63,.98),rgba(7,23,39,.98));
    box-shadow:
        0 20px 55px rgba(0,0,0,.22),
        inset 0 1px rgba(255,255,255,.025);
}

.service-login,
.service-directory {
    padding:30px;
}

.panel-heading {
    display:flex;
    align-items:center;
    gap:14px;
    padding-bottom:20px;
    border-bottom:1px solid #1e3e59;
}

.panel-icon {
    width:46px;
    height:46px;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:7px;
    background:#0d5287;
    border:1px solid #2779b5;
    color:#fff;
    font:bold 24px Georgia,serif;
}

.service-icon {
    font-family:Arial,sans-serif;
}

.panel-heading h2 {
    margin:3px 0 0;
    color:#fff;
    font-size:20px;
}

.panel-intro {
    min-height:46px;
    margin:20px 0;
    color:#8ea6bb;
    font-size:13px;
}

.premium-login-form label {
    margin-top:15px;
    color:#b7c9d9;
    font-size:12px;
}

.input-shell {
    position:relative;
}

.input-shell input {
    width:100%;
    height:46px;
    padding-left:42px;
    border-color:#294d69;
    background:#061421;
}

.input-symbol {
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#4f8dbb;
    font-size:13px;
}

.primary-action {
    width:100%;
    margin-top:24px;
    padding:13px;
    font-size:12px;
    letter-spacing:.6px;
}

.login-footer {
    margin-top:23px;
    padding-top:19px;
    border-top:1px solid #1e3e59;
    display:flex;
    justify-content:space-between;
    gap:15px;
    color:#7f99ae;
    font-size:12px;
}

.service-links {
    border:1px solid #1e405d;
    border-radius:6px;
    overflow:hidden;
}

.service-links > a {
    min-height:62px;
    padding:10px 13px;
    display:grid;
    grid-template-columns:36px 1fr 15px;
    align-items:center;
    gap:11px;
    border-bottom:1px solid #1c3a54;
    color:#c6d7e6;
    background:rgba(4,17,29,.24);
}

.service-links > a:last-child {
    border-bottom:0;
}

.service-links > a:hover {
    background:#102f4b;
}

.service-links strong,
.service-links small {
    display:block;
}

.service-links strong {
    color:#dceaf5;
    font-size:12px;
}

.service-links small {
    margin-top:2px;
    color:#6f8ba3;
    font-size:10px;
}

.service-link-icon {
    width:31px;
    height:31px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
    background:#0c385a;
    color:#63b5f2;
    font-weight:bold;
}

.service-links > a > b {
    color:#4c83a9;
    font-size:20px;
}

.service-status-card {
    margin-top:17px;
    padding:13px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid #1d415d;
    border-radius:6px;
    background:#071827;
}

.service-status-card strong,
.service-status-card small {
    display:block;
}

.service-status-card strong {
    color:#c8d8e6;
    font-size:11px;
}

.service-status-card small {
    margin-left:17px;
    color:#68849a;
    font-size:9px;
}

.online-label {
    color:#62d69a;
    font-size:9px;
    font-weight:bold;
    letter-spacing:1px;
}

.portal-features {
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid #1d3e59;
    border-radius:8px;
    overflow:hidden;
    background:#071725;
}

.portal-features > div {
    padding:23px;
    border-right:1px solid #1d3e59;
}

.portal-features > div:last-child {
    border-right:0;
}

.feature-number {
    color:#3d7ca9;
    font-size:10px;
    font-weight:bold;
}

.portal-features h3 {
    margin:6px 0;
    color:#d7e5f1;
    font-size:14px;
}

.portal-features p {
    margin:0;
    color:#718ba1;
    font-size:11px;
}

/* DASHBOARD */

.control-center {
    max-width:1200px;
    margin:auto;
    padding:42px 22px 70px;
}

.control-heading {
    margin-bottom:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.control-heading h1 {
    margin:4px 0 3px;
    font-size:31px;
}

.control-heading p {
    margin:0;
    color:#7892a8;
}

.control-user {
    display:flex;
    align-items:center;
    gap:11px;
    padding:10px 14px;
    border:1px solid #244761;
    border-radius:7px;
    background:#091b2b;
}

.control-avatar,
.table-user > span {
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#15588b;
    color:#fff;
    font-weight:bold;
}

.control-avatar {
    width:36px;
    height:36px;
}

.control-user small,
.control-user strong {
    display:block;
}

.control-user small {
    color:#698399;
    font-size:9px;
}

.control-user strong {
    font-size:12px;
}

.dashboard-layout {
    display:grid;
    grid-template-columns:245px minmax(0,1fr);
    gap:22px;
}

.channel-sidebar {
    align-self:start;
    overflow:hidden;
}

.sidebar-heading {
    padding:20px;
    border-bottom:1px solid #21415d;
}

.sidebar-heading h3 {
    margin:4px 0 0;
}

.channel-navigation a {
    padding:12px 15px;
    display:grid;
    grid-template-columns:20px 1fr 10px;
    align-items:center;
    border-bottom:1px solid #193750;
    color:#9db4c8;
    font-size:12px;
}

.channel-navigation a:hover {
    background:#102d47;
    color:#fff;
}

.channel-navigation a.active {
    background:linear-gradient(90deg,#124f7e,#103a5d);
    color:#fff;
    border-left:3px solid #55b4f5;
}

.channel-navigation a span {
    color:#58a9e4;
}

.channel-navigation a b {
    color:#4f7795;
}

.empty-channels {
    padding:20px;
    color:#718ba0;
    font-size:11px;
}

.sidebar-service-info {
    padding:17px;
    background:#061622;
}

.sidebar-service-info span,
.sidebar-service-info small {
    display:block;
}

.sidebar-service-info span {
    color:#93adbf;
    font-size:10px;
}

.sidebar-service-info small {
    margin:5px 0 0 13px;
    color:#56758c;
    font-size:9px;
}

.dashboard-content {
    min-width:0;
}

.channel-overview {
    margin-bottom:20px;
    padding:23px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.channel-overview h2 {
    margin:4px 0;
    font-size:25px;
}

.channel-overview p {
    margin:0;
    color:#7c96aa;
    font-size:11px;
}

.access-badge {
    min-width:100px;
    padding:12px 18px;
    border:1px solid #27618b;
    border-radius:6px;
    background:#0a2b45;
    text-align:center;
}

.access-badge small,
.access-badge strong {
    display:block;
}

.access-badge small {
    color:#7fa4c0;
    font-size:9px;
    text-transform:uppercase;
}

.access-badge strong {
    color:#66bcf5;
    font-size:25px;
}

.management-card {
    margin-bottom:20px;
    padding:23px;
}

.section-heading {
    margin-bottom:19px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.section-heading h3 {
    margin:4px 0 0;
}

.record-count {
    padding:5px 8px;
    border-radius:4px;
    background:#0c3554;
    color:#72b5e6;
    font-size:9px;
    font-weight:bold;
}

.add-user-form {
    display:grid;
    grid-template-columns:minmax(0,1fr) 150px auto;
    align-items:end;
    gap:12px;
}

.add-user-form input,
.add-user-form select {
    width:100%;
    height:42px;
}

.add-user-form button {
    height:42px;
}

.table-scroll {
    overflow-x:auto;
}

.premium-table {
    margin:0;
}

.premium-table th {
    padding:10px 12px;
    color:#6889a3;
    font-size:9px;
}

.premium-table td {
    padding:12px;
    vertical-align:middle;
}

.table-user {
    display:flex;
    align-items:center;
    gap:9px;
}

.table-user > span {
    width:28px;
    height:28px;
    font-size:10px;
}

.table-access {
    display:inline-block;
    min-width:42px;
    padding:4px 7px;
    border:1px solid #26597d;
    border-radius:4px;
    background:#0a2b45;
    color:#64b7ef;
    text-align:center;
    font-weight:bold;
}

.access-form select {
    min-width:72px;
}

.read-only {
    color:#71899c;
    font-size:9px;
    font-weight:bold;
}

.empty-dashboard {
    padding:60px 30px;
    text-align:center;
}

.small-x {
    width:55px;
    height:55px;
    font-size:27px;
}

.empty-dashboard p {
    color:#7e97aa;
}

/* FOOTER */

.premium-footer {
    margin-top:0;
}

.premium-footer .footer-inner {
    align-items:center;
}

.footer-brand {
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-x {
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid #28628c;
    color:#62b5ee;
    font:bold 17px Georgia,serif;
}

.footer-brand strong,
.footer-brand small {
    display:block;
}

.footer-brand small {
    color:#597287;
    font-size:9px;
}

.footer-network {
    display:flex;
    gap:18px;
    color:#668096;
    font-size:10px;
}

.footer-copy {
    color:#4e697f;
    font-size:10px;
}

/* MOBILE */

@media(max-width:850px) {

    .network-strip-inner {
        justify-content:center;
        flex-wrap:wrap;
        gap:8px 15px;
        padding-top:7px;
        padding-bottom:7px;
    }

    .network-strip .powered {
        margin-left:0;
    }

    .service-layout {
        grid-template-columns:1fr;
    }

    .portal-features {
        grid-template-columns:1fr;
    }

    .portal-features > div {
        border-right:0;
        border-bottom:1px solid #1d3e59;
    }

    .portal-features > div:last-child {
        border-bottom:0;
    }

    .dashboard-layout {
        grid-template-columns:1fr;
    }

    .add-user-form {
        grid-template-columns:1fr;
    }
}

@media(max-width:600px) {

    .premium-hero {
        padding-top:40px;
    }

    .premium-hero h1 {
        font-size:34px;
    }

    .service-login,
    .service-directory {
        padding:20px;
    }

    .login-footer {
        flex-direction:column;
    }

    .control-heading {
        align-items:flex-start;
        flex-direction:column;
    }

    .channel-overview {
        align-items:flex-start;
        flex-direction:column;
        gap:15px;
    }

    .access-badge {
        width:100%;
    }

    .footer-network {
        flex-direction:column;
        gap:3px;
    }
}
