/* MineCloud â€” Ãrea do cliente */

.dashboard-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scrollbar-gutter: stable;
}

.dashboard-page {
    flex: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-page.is-ready {
    opacity: 1;
    transform: translateY(0);
}

body.app-nav-enter .dashboard-page,
body.app-nav-leaving .dashboard-page {
    transition: none;
}

body.dashboard-is-leaving .dashboard-page {
    opacity: 0;
    transform: translateY(-6px);
    transition-duration: 0.22s;
}

.dashboard-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dashboard-progress.is-active {
    opacity: 1;
}

.dashboard-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4a5280, #6b74a8);
    border-radius: 0 2px 2px 0;
    transition: width 0.35s ease;
}

body.dashboard-is-leaving .dashboard-progress__bar {
    width: 85%;
}

/* Header refinado */
.dashboard-header {
    display: block;
    height: auto;
    min-height: 112px;
    padding: 1.35rem 0;
    background: linear-gradient(180deg, #0c1322 0%, #0a101b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.dashboard-header__brand {
    flex-shrink: 0;
    line-height: 0;
}

.dashboard-header__brand img {
    height: 72px;
    width: auto;
    max-width: min(240px, 48vw);
    object-fit: contain;
}

.dashboard-header__profile {
    margin-left: auto;
    flex-shrink: 0;
}

.dashboard-header .profile {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.dashboard-header .profile span {
    text-align: left;
}

.dashboard-header > .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.dashboard-header .profile img {
    width: 50px;
    height: 50px;
    margin-right: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.dashboard-header .profile:hover img {
    border-color: rgba(83, 82, 237, 0.35);
    transform: scale(1.02);
}

.dashboard-header .profile > span {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: #f4f6fb;
}

.dashboard-header .profile span small {
    font-size: 0.8125rem;
    line-height: 1.35;
    color: #8b98ad;
    font-weight: 400;
}

@media (max-width: 575px) {
    .dashboard-header__brand img {
        height: 58px;
    }

    .dashboard-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-header__profile {
        width: 100%;
        margin-left: 0;
    }

    .dashboard-header .profile {
        justify-content: flex-start;
        text-align: left;
    }

    .dashboard-header .profile span {
        text-align: left;
    }
}

/* Navbar da Ã¡rea do cliente */
.dashboard-menu {
    padding: 0.65rem 0;
}

.dashboard-menu > .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .dashboard-menu .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .dashboard-menu .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .dashboard-menu .navbar-nav.mr-auto {
        margin-right: auto !important;
    }

    .dashboard-menu .navbar-nav + .navbar-nav {
        gap: 0.5rem;
        margin-left: 0.75rem;
    }

    .dashboard-menu .nav-item {
        width: auto;
    }
}

.dashboard-menu .nav-item {
    padding: 0;
    margin: 0;
}

.dashboard-menu .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem !important;
    border-radius: 10px !important;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #9aa8c0 !important;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-menu .nav-link i {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.dashboard-menu .nav-link:hover {
    background: rgba(83, 82, 237, 0.14) !important;
    color: #eef1f7 !important;
}

.dashboard-menu .nav-item.active .nav-link {
    background: rgba(83, 82, 237, 0.18) !important;
    color: #eef1f7 !important;
}

.dashboard-menu .wallet .nav-link {
    background: rgba(83, 82, 237, 0.32) !important;
    color: #ffffff !important;
    padding: 0.55rem 1rem !important;
    border-radius: 10px !important;
}

.dashboard-menu .wallet .nav-link:hover {
    background: rgba(83, 82, 237, 0.48) !important;
    color: #ffffff !important;
}

.dashboard-menu .wallet.active .nav-link {
    background: rgba(83, 82, 237, 0.55) !important;
    color: #ffffff !important;
}

.dashboard-menu .logout .nav-link {
    background: rgba(190, 45, 45, 0.88) !important;
    color: #ffffff !important;
    padding: 0.55rem 1rem !important;
    border-radius: 10px !important;
}

.dashboard-menu .logout .nav-link:hover {
    background: rgba(210, 55, 55, 0.95) !important;
    color: #ffffff !important;
}

.dashboard-menu .navbar-toggler {
    margin: 0.15rem 0 0.35rem;
    padding: 0.4rem 0.65rem;
    border-color: rgba(255, 255, 255, 0.12);
    color: #eef1f7;
}

.dashboard-menu .navbar-toggler i {
    font-size: 1.35rem;
}

@media (max-width: 991px) {
    .dashboard-menu .navbar-collapse {
        padding: 0.75rem 0 0.25rem;
    }

    .dashboard-menu .navbar-nav {
        gap: 0.15rem;
    }

    .dashboard-menu .nav-item {
        width: 100%;
    }

    .dashboard-menu .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.65rem 0.85rem !important;
    }

    .dashboard-menu .navbar-nav + .navbar-nav {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* Layout principal â€” mais largo */
.dashboard .dashboard-main {
    width: 100%;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.dashboard-header > .container,
.dashboard-header > .dashboard-main,
.dashboard-menu > .container,
.dashboard-menu > .dashboard-main {
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

/* CabeÃ§alho de pÃ¡gina */
.dash-page-head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.dash-page-head__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(83, 82, 237, 0.12);
    color: #9aa3d4;
    font-size: 2rem;
}

.dash-page-head__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f4f6fb;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.dash-page-head__subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #8b98ad;
    margin: 0;
    max-width: 60ch;
}

/* ConteÃºdo principal */
.dashboard .content {
    padding: 2rem 0 2.75rem;
}

.dashboard .card-body--padded,
.dashboard .card:not(.dash-card) .card-body {
    padding: 1.75rem;
}

.dashboard .card-body > h5,
.dashboard .card-body > .h4 {
    margin-bottom: 1.25rem !important;
}

.dashboard .row.dash-cards {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.dashboard .row.dash-cards > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Hero da dashboard */
.dash-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.75rem;
    align-items: center;
    padding: 2rem 2.25rem;
    margin-bottom: 2.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21, 31, 54, 0.95) 0%, rgba(17, 26, 43, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.dash-hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 16px;
    background: rgba(83, 82, 237, 0.12);
    color: #9aa3d4;
    font-size: 2.25rem;
    flex-shrink: 0;
}

.dash-hero__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d7a8f;
    margin-bottom: 0.35rem;
}

.dash-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f4f6fb;
    margin: 0 0 0.65rem;
    line-height: 1.2;
}

.dash-hero__title span {
    color: #b8bfdc;
}

.dash-hero__lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #8b98ad;
    margin: 0;
    max-width: 52ch;
}

.dash-hero__wallet {
    text-align: right;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(8, 13, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.dash-hero__wallet-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6d7a8f;
    margin-bottom: 0.25rem;
}

.dash-hero__wallet-value {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: #eef1f7;
}

.dash-hero__wallet a {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9aa3d4;
    text-decoration: none;
}

.dash-hero__wallet a:hover {
    color: #b8bfdc;
    text-decoration: none;
}

/* Cards de resumo (stats) */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, rgba(21, 31, 54, 0.95) 0%, rgba(17, 26, 43, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}

.dash-stat::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
    opacity: 0.9;
}

.dash-stat:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.dash-stat--services::before {
    background: linear-gradient(180deg, #6362ff, #5352ed);
}

.dash-stat--invoices::before {
    background: linear-gradient(180deg, #f6ad55, #ed8936);
}

.dash-stat--tickets::before {
    background: linear-gradient(180deg, #68d391, #38a169);
}

.dash-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 14px;
    font-size: 1.65rem;
}

.dash-stat--services .dash-stat__icon {
    background: rgba(83, 82, 237, 0.16);
    color: #b8b7ff;
}

.dash-stat--invoices .dash-stat__icon {
    background: rgba(237, 137, 54, 0.14);
    color: #f6ad55;
}

.dash-stat--tickets .dash-stat__icon {
    background: rgba(56, 161, 105, 0.14);
    color: #68d391;
}

.dash-stat__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.dash-stat__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #f4f6fb;
}

.dash-stat__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #eef1f7;
}

.dash-stat__hint {
    font-size: 0.8125rem;
    color: #6d7a8f;
    line-height: 1.4;
}

.dash-stat__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #8b98ad;
    font-size: 1.25rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dash-stat:hover .dash-stat__arrow {
    background: rgba(255, 255, 255, 0.08);
    color: #eef1f7;
    transform: translateX(2px);
}

/* Cards da dashboard */
.dashboard .card,
.dash-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: rgba(21, 31, 54, 0.75) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.dashboard .card:hover,
.dash-card:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.dash-card > .card-body {
    padding: 0;
}

.dash-card > .card-body:not(.card-body--padded) {
    padding: 0;
}

.dash-card .card-body--padded {
    padding: 1.75rem;
}

.dash-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #eef1f7 !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dash-card__title > i {
    font-size: 1.25rem;
    color: #9aa3d4;
}

.dash-card__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #3d4568;
    color: #f0f2f8;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dash-btn:hover {
    background: #4a5378;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.dash-btn--primary {
    background: #5352ed;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dash-btn--primary:hover {
    background: #6362ff;
    color: #fff;
}

.dashboard .card-body h5,
.dashboard .card-body .h4 {
    font-family: var(--font-display);
    color: #eef1f7 !important;
}

.dashboard .table {
    color: #c5cdd9;
}

.dashboard .table thead th {
    border-top: none;
    border-bottom: none;
    color: #8b98ad;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dashboard .table tbody tr {
    transition: background 0.2s ease;
}

.dashboard .table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dashboard .table th,
.dashboard .table td {
    border: none !important;
}

/* Tabelas da dashboard */
.dash-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dash-table-wrap--in-card {
    margin: 0;
}

.dash-table-wrap--in-card .dash-table thead th {
    border-top: none;
    border-bottom: none;
    background: rgba(8, 13, 22, 0.35);
    padding: 0.9rem 1.75rem;
    white-space: nowrap;
}

.dash-table-wrap--in-card .dash-table tbody td,
.dash-table-wrap--in-card .dash-table tbody th {
    padding: 0.9rem 1.75rem;
    border-top: none;
    vertical-align: middle;
}

.dash-table-wrap--in-card .dash-table tbody tr:last-child td,
.dash-table-wrap--in-card .dash-table tbody tr:last-child th {
    border-bottom: none;
}

.dash-table-wrap--in-card .dash-table__empty td,
.dash-table-wrap--in-card .dash-table__empty th {
    padding: 2rem 1.75rem;
    text-align: center;
    color: #8b98ad;
    font-weight: 400;
}

.dash-table {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.dash-table th,
.dash-table td {
    vertical-align: middle;
    border: none !important;
}

.dash-table tbody tr {
    transition: background 0.2s ease;
}

.dash-table:not(.dash-table--static) tbody tr {
    cursor: pointer;
}

.dash-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dash-table__nowrap {
    white-space: nowrap;
    width: 1%;
}

.dash-table__clip {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-table--tickets {
    table-layout: fixed;
}

.dash-table--services {
    table-layout: fixed;
}

.dash-table__col-service {
    width: 42%;
}

.dash-table__col-service-name {
    width: 34%;
}

.dash-table__col-created {
    width: 18%;
}

.dash-table__col-price {
    width: 18%;
}

.dash-table__col-expire {
    width: 18%;
}

.dash-table__col-status {
    width: 16%;
}

.dash-table__thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.dash-table__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dash-table__thumb--minecraft {
    background: rgba(93, 156, 68, 0.16);
    border-color: rgba(124, 189, 74, 0.28);
}

.dash-table__thumb--minecraft img {
    object-fit: contain;
    image-rendering: auto;
}

.dash-table__thumb--nodejs {
    background: rgba(51, 153, 51, 0.12);
    border-color: rgba(51, 153, 51, 0.28);
    padding: 0.2rem;
}

.dash-table__thumb--nodejs img {
    object-fit: contain;
    transform: none;
}

.dash-table__thumb--cloud {
    background: rgba(99, 179, 237, 0.14);
    border-color: rgba(99, 179, 237, 0.28);
    padding: 0.35rem;
}

.dash-table__service-name {
    font-weight: 600;
    color: #eef1f7;
}

.dash-table__service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.dash-table__service-plan {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8b98ad;
    line-height: 1.3;
}

.dash-table__service-address {
    font-family: "IBM Plex Mono", "Consolas", monospace;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #9fd8b8;
    line-height: 1.3;
}

.dash-table__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    white-space: nowrap;
}

.dash-table__price-value {
    font-family: var(--font-display, inherit);
    font-weight: 700;
    font-size: 0.9375rem;
    color: #c4f1d6;
    letter-spacing: -0.01em;
}

.dash-table__price-period {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6d7a8f;
}

/* Grid de cards de serviços — alinhado ao hosting.css / home */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 13.5rem;
    padding: 1.15rem 1.15rem 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    isolation: isolate;
    background: #080d16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card__media-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center 52%;
    background-repeat: no-repeat;
    transform: scale(1.06);
    filter: brightness(0.82) saturate(1.05);
    image-rendering: auto;
}

.service-card__shade {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 13, 22, 0.35) 0%, rgba(8, 13, 22, 0.72) 55%, rgba(8, 13, 22, 0.9) 100%),
        linear-gradient(180deg, rgba(8, 13, 22, 0.65) 0%, transparent 28%, transparent 62%, rgba(8, 13, 22, 0.88) 100%);
}

.service-card--nodejs .service-card__shade {
    background:
        radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 13, 22, 0.4) 0%, rgba(8, 13, 22, 0.75) 55%, rgba(8, 13, 22, 0.92) 100%),
        linear-gradient(180deg, rgba(8, 13, 22, 0.65) 0%, transparent 28%, transparent 62%, rgba(8, 13, 22, 0.88) 100%);
}

.service-card > *:not(.service-card__media-bg):not(.service-card__shade) {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.service-card--minecraft:hover {
    border-color: rgba(83, 82, 237, 0.45);
}

.service-card--nodejs:hover {
    border-color: rgba(106, 168, 140, 0.35);
}

.service-card--cloud:hover {
    border-color: rgba(99, 179, 237, 0.35);
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}

.service-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(8, 13, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.service-card--nodejs .service-card__media {
    padding: 0.55rem;
}

.service-card--minecraft .service-card__media {
    padding: 0.35rem;
}

.service-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
}

.service-card--minecraft .service-card__media img {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.service-card__badge {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.service-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.service-card__category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b7aff;
}

.service-card--nodejs .service-card__category {
    color: #8fb8a6;
}

.service-card--cloud .service-card__category {
    color: #8b8aff;
}

.service-card__title {
    font-family: var(--font-display, inherit);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #f4f6fb;
    line-height: 1.3;
}

.service-card__subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(244, 246, 251, 0.68);
    line-height: 1.35;
}

.service-card__address {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
    font-family: "IBM Plex Mono", "Consolas", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(196, 241, 214, 0.92);
    letter-spacing: 0.01em;
}

.service-card__address i {
    font-size: 0.95rem;
    opacity: 0.85;
}

.service-card__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(8, 13, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__date {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.service-card__date-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #8b98ad;
}

.service-card__date-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #eef1f7;
    line-height: 1.35;
}

.service-card__date-value em {
    display: block;
    margin-top: 0.15rem;
    font-style: normal;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #8b98ad;
}

.service-card__date--soon .service-card__date-value,
.service-card__date--soon .service-card__date-value em {
    color: #f6ad55;
}

.service-card__date--overdue .service-card__date-value,
.service-card__date--overdue .service-card__date-value em {
    color: #fc8181;
}

.service-card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.service-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    white-space: nowrap;
}

.service-card__price-value {
    font-family: var(--font-display, inherit);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.service-card__price-period {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #9aa8c0;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin-top: auto;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: rgba(83, 82, 237, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card__cta i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.service-card:hover .service-card__cta {
    background: #6362ff;
}

.service-card:hover .service-card__cta i {
    transform: translateX(2px);
}

.service-card--nodejs .service-card__cta {
    background: rgba(90, 143, 120, 0.92);
}

.service-card--nodejs:hover .service-card__cta {
    background: #5a8f78;
}

.service-card--cloud .service-card__cta {
    background: rgba(99, 179, 237, 0.92);
}

.service-card--cloud:hover .service-card__cta {
    background: #63b3ed;
}

@media (max-width: 1199.98px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639.98px) {
    .service-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ——— Catálogo de serviços (/client/services) ——— */
.svr-catalog {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.svr-catalog__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    align-items: center;
}

.svr-catalog__search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: rgba(8, 13, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svr-catalog__search i {
    color: #8b98ad;
    font-size: 1.1rem;
}

.svr-catalog__search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #eef1f7;
    font-size: 0.875rem;
}

.svr-catalog__search input::placeholder {
    color: #6d7a8f;
}

.svr-catalog__filter select {
    height: 100%;
    min-height: 42px;
    padding: 0.5rem 2rem 0.5rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 22, 0.72);
    color: #eef1f7;
    font-size: 0.8125rem;
}

.svr-catalog__view {
    display: inline-flex;
    padding: 0.2rem;
    border-radius: 12px;
    background: rgba(8, 13, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svr-catalog__view button {
    border: 0;
    background: transparent;
    color: #8b98ad;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 9px;
    cursor: pointer;
}

.svr-catalog__view button.is-active {
    color: #eef1f7;
    background: rgba(99, 98, 255, 0.22);
}

.svr-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.svr-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 1rem 0.95rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.98), rgba(8, 13, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left-width: 3px;
    border-left-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.svr-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.svr-card--online {
    border-left-color: #48bb78;
}

.svr-card--offline {
    border-left-color: #6d7a8f;
}

.svr-card--pending {
    border-left-color: #ed8936;
}

.svr-card--suspended {
    border-left-color: #fc8181;
    opacity: 0.82;
}

.svr-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.svr-card__runtime {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #c5cedd;
}

.svr-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6d7a8f;
}

.svr-card__runtime--online .svr-card__dot {
    background: #48bb78;
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.45);
    animation: svr-pulse 1.8s ease-out infinite;
}

.svr-card__runtime--starting .svr-card__dot,
.svr-card__runtime--stopping .svr-card__dot {
    background: #ed8936;
}

.svr-card__runtime--offline .svr-card__dot {
    background: #6d7a8f;
}

@keyframes svr-pulse {
    0% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(72, 187, 120, 0); }
    100% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0); }
}

.svr-card__billing {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c5cedd;
}

.svr-card__billing--success {
    color: #9ae6b4;
    border-color: rgba(72, 187, 120, 0.28);
    background: rgba(72, 187, 120, 0.08);
}

.svr-card__billing--warning {
    color: #fbd38d;
    border-color: rgba(237, 137, 54, 0.28);
    background: rgba(237, 137, 54, 0.08);
}

.svr-card__billing--danger {
    color: #feb2b2;
    border-color: rgba(252, 129, 129, 0.28);
    background: rgba(252, 129, 129, 0.08);
}

.svr-card__main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
}

.svr-card__thumb {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svr-card__thumb img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.svr-card__identity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.svr-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
    color: #f7fafc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.svr-card__meta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #8b98ad;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.svr-card__connect {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-card__connect-value {
    flex: 1;
    min-width: 0;
    font-family: "IBM Plex Mono", "Consolas", monospace;
    font-size: 0.75rem;
    color: #c4f1d6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.svr-card__copy,
.svr-catalog-list__copy {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #c5cedd;
    cursor: pointer;
}

.svr-card__copy:hover,
.svr-catalog-list__copy:hover {
    background: rgba(99, 98, 255, 0.2);
    color: #fff;
}

.svr-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.1rem;
}

.svr-card__expire {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8b98ad;
}

.svr-card__expire--soon {
    color: #f6ad55;
}

.svr-card__expire--overdue {
    color: #fc8181;
}

.svr-card__action {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #a5b4fc;
}

.svr-card:hover .svr-card__action {
    color: #c3cdff;
}

.svr-catalog-list-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 22, 0.55);
}

.svr-catalog-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.svr-catalog-list th,
.svr-catalog-list td {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    vertical-align: middle;
}

.svr-catalog-list th {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8b98ad;
}

.svr-catalog-list tbody tr:last-child td {
    border-bottom: 0;
}

.svr-catalog-list__name {
    color: #eef1f7;
    font-weight: 600;
    text-decoration: none;
}

.svr-catalog-list__name:hover {
    color: #c3cdff;
}

.svr-catalog-list__muted {
    color: #8b98ad;
}

.svr-catalog-list__connect {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.svr-catalog-list__connect code {
    font-family: "IBM Plex Mono", "Consolas", monospace;
    font-size: 0.75rem;
    color: #c4f1d6;
}

.svr-catalog-list__expire--soon {
    color: #f6ad55;
}

.svr-catalog-list__expire--overdue {
    color: #fc8181;
}

.svr-catalog-list__action-col {
    width: 44px;
    text-align: right;
}

.svr-catalog-list__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #a5b4fc;
    text-decoration: none;
}

.svr-catalog-list__go:hover {
    background: rgba(99, 98, 255, 0.16);
    color: #fff;
}

.svr-catalog-list__runtime-label {
    display: none;
}

.svr-catalog__empty-filter {
    padding: 2rem 1rem;
    text-align: center;
    color: #8b98ad;
}

.svr-catalog__clear {
    margin-top: 0.75rem;
    border: 0;
    background: transparent;
    color: #a5b4fc;
    font-weight: 600;
    cursor: pointer;
}

.svr-catalog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 3rem 1.5rem;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(8, 13, 22, 0.45);
}

.svr-catalog-empty__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #a5b4fc;
    background: rgba(99, 98, 255, 0.12);
}

.svr-catalog-empty__title {
    margin: 0;
    font-size: 1.25rem;
    color: #eef1f7;
}

.svr-catalog-empty__text {
    margin: 0;
    max-width: 28rem;
    color: #8b98ad;
    line-height: 1.5;
}

.svr-catalog-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: rgba(99, 98, 255, 0.9);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1199.98px) {
    .svr-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .svr-catalog__toolbar {
        grid-template-columns: minmax(0, 1fr);
    }

    .svr-catalog__filter,
    .svr-catalog__view {
        justify-self: start;
    }

    .svr-catalog__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .svr-catalog-list__runtime-label {
        display: inline;
    }
}

.dash-table__col-subject {
    width: 38%;
}

.dash-table__col-updated {
    width: 30%;
}

.dash-table__col-status {
    width: 32%;
}

.dash-table__status {
    display: inline-block;
    white-space: nowrap;
}

.dash-table__cell {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: 100%;
}

.dash-table__cell > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-table__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 10px;
    font-size: 1.05rem;
}

.dash-table__ico--minecraft {
    background: rgba(104, 211, 145, 0.14);
    color: #68d391;
}

.dash-table__ico--nodejs {
    background: rgba(104, 211, 145, 0.12);
    color: #9ae6b4;
}

.dash-table__ico--cloud {
    background: rgba(99, 179, 237, 0.14);
    color: #63b3ed;
}

.dash-table__ico--default {
    background: rgba(83, 82, 237, 0.14);
    color: #b8b7ff;
}

.dash-table__ico--muted {
    background: rgba(255, 255, 255, 0.05);
    color: #8b98ad;
}

.dash-table__ico--ticket {
    background: rgba(154, 163, 212, 0.14);
    color: #b8bfdc;
}

.dash-table__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #9aa8c0;
    font-size: 0.8125rem;
}

.dash-table__meta i {
    font-size: 1rem;
    color: #6d7a8f;
}

.dash-table__meta em {
    font-style: normal;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 0.1rem;
}

.dash-table__meta--soon,
.dash-table__meta--soon i {
    color: #f6ad55;
}

.dash-table__meta--overdue,
.dash-table__meta--overdue i {
    color: #fc8181;
}

.dash-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.35rem 1.75rem 1.1rem;
}

.dash-pagination__info {
    margin: 0;
    font-size: 0.75rem;
    color: #8b98ad;
    text-align: center;
}

.dash-pagination__controls {
    display: grid;
    grid-template-columns: 6.5rem auto 6.5rem;
    align-items: center;
    column-gap: 0.5rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.dash-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    min-height: 2rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    color: #d6dbe8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dash-pagination__btn i {
    display: inline-flex;
    font-size: 1rem;
    line-height: 1;
}

.dash-pagination__btn:hover {
    color: #fff;
    background: rgba(83, 82, 237, 0.18);
    border-color: rgba(83, 82, 237, 0.35);
    text-decoration: none;
}

.dash-pagination__btn--disabled {
    opacity: 0.45;
}

.dash-pagination__pages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.dash-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    color: #9aa8c0;
    text-decoration: none;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dash-pagination__page:hover {
    color: #eef1f7;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.dash-pagination__page.is-active {
    background: rgba(83, 82, 237, 0.2);
    border-color: rgba(83, 82, 237, 0.35);
    color: #c9c8ff;
}

.dashboard-tickets-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    transition: opacity 0.2s ease;
}

.dash-card__body--tickets {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dashboard-tickets-panel .dash-table-wrap--tickets-dashboard {
    flex: 1 1 auto;
    min-height: calc(3.1rem + (5 * 3.4rem));
}

.dash-table--tickets tbody tr {
    height: 3.4rem;
}

.dash-table--ticket-list tbody tr {
    cursor: pointer;
    transition: background 0.2s ease;
}

.dash-table--ticket-list tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dash-table--ticket-list tbody tr.dash-table__empty {
    cursor: default;
}

.dash-table--ticket-list tbody tr.dash-table__empty:hover {
    background: transparent;
}

.dashboard-tickets-panel .dash-pagination {
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 1.15rem;
}

.dashboard-tickets-panel .dash-pagination__controls {
    grid-template-columns: 6.5rem auto 6.5rem;
}

.dashboard-tickets-panel.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

.dash-badge i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

.dash-badge--cell {
    padding: 0.4rem 0.9rem;
    gap: 0.45rem;
    min-height: 1.85rem;
    letter-spacing: 0.01em;
}

.dash-badge--success {
    background: rgba(56, 161, 105, 0.16);
    color: #68d391;
}

.dash-badge--warning {
    background: rgba(237, 137, 54, 0.16);
    color: #f6ad55;
}

.dash-badge--danger {
    background: rgba(245, 101, 101, 0.16);
    color: #fc8181;
}

.dash-badge--info {
    background: rgba(99, 179, 237, 0.16);
    color: #63b3ed;
}

.dash-badge--muted {
    background: rgba(255, 255, 255, 0.06);
    color: #8b98ad;
}

/* Estados vazios */
.dash-card__empty {
    padding: 1.75rem;
}

.dash-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 0.65rem;
    margin-top: 0.25rem;
    border-radius: 14px;
    background: rgba(8, 13, 22, 0.55);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.dash-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.35rem;
    border-radius: 14px;
    background: rgba(83, 82, 237, 0.14);
    color: #b8bfdc;
    font-size: 1.75rem;
}

.dash-empty__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #eef1f7;
    margin: 0;
}

.dash-empty__text {
    font-size: 0.875rem;
    color: #8b98ad;
    margin: 0;
    max-width: 22rem;
    line-height: 1.65;
    text-wrap: balance;
}

.dash-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.7rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dash-empty__btn--primary {
    background: #5352ed;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(83, 82, 237, 0.22);
}

.dash-empty__btn--primary:hover {
    background: #6362ff;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(83, 82, 237, 0.28);
}

.dash-empty__btn--outline {
    background: transparent;
    color: #eef1f7;
    border: 1.5px solid rgba(154, 163, 212, 0.55);
}

.dash-empty__btn--outline:hover {
    background: rgba(83, 82, 237, 0.12);
    border-color: #9aa3d4;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Alerta de horário — página de suporte */
.support-hours-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #eef1f7;
}

.support-hours-alert__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    font-size: 1.35rem;
}

.support-hours-alert__title {
    margin: 0 0 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fde68a;
    line-height: 1.35;
}

.support-hours-alert__text {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    color: #c5ccda;
    line-height: 1.5;
}

.support-hours-alert__schedule {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.8125rem;
    color: #9aa6ba;
    line-height: 1.45;
}

.support-hours-alert__schedule li + li {
    margin-top: 0.15rem;
}

/* Modal de chamado (suporte) */
.modal.ticket-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.ticket-modal__dialog {
    width: min(780px, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
}

.ticket-modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: min(72vh, 600px);
    min-height: 400px;
    max-height: calc(100vh - 2.5rem);
    background: #111a2b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #eef1f7;
    overflow: hidden;
}

.ticket-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #8b98ad;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ticket-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #eef1f7;
}

.ticket-modal__body {
    flex: 1;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ticket-modal__layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    flex: 1;
    min-height: 0;
    height: 100%;
}

.ticket-modal__aside {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
    min-height: 0;
    padding: 1.1rem 1.15rem 1.1rem;
    background: rgba(8, 13, 22, 0.45);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-sizing: border-box;
}

.ticket-modal__id {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #f4f6fb;
    margin: 0;
    line-height: 1.3;
}

.ticket-modal__status {
    margin: 0;
}

.ticket-modal__meta {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ticket-modal__meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6d7a8f;
}

.ticket-modal__meta-value {
    font-size: 0.8125rem;
    color: #c5ccda;
    line-height: 1.4;
}

.ticket-modal__meta--compact {
    margin-top: -0.15rem;
}

.ticket-modal__close-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.62rem 0.9rem;
    font-size: 0.9rem;
    min-height: 42px;
    gap: 0.45rem;
}

.ticket-modal__hours {
    margin-top: 0.15rem;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-modal__hours-title {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9aa6ba;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ticket-modal__hours-title i {
    font-size: 0.95rem;
    color: #8b98ad;
}

.ticket-modal__hours-list {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.8125rem;
    color: #b8c0d0;
    line-height: 1.45;
}

.ticket-modal__hours-list li + li {
    margin-top: 0.2rem;
}

.ticket-modal__hours-offline {
    margin: 0.55rem 0 0;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: #fbbf24;
    line-height: 1.4;
}

.ticket-modal__main {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    min-width: 0;
    padding: 1.35rem 1.5rem 1.5rem;
    box-sizing: border-box;
}

.ticket-modal__title {
    flex-shrink: 0;
    margin: 0 0 1rem !important;
    font-size: 1.0625rem !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticket-modal__chat {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ticket-chat-item {
    display: flex;
    max-width: 82%;
}

.ticket-chat-item--end {
    align-self: flex-end;
}

.ticket-chat-item--start {
    align-self: flex-start;
}

.ticket-modal__chat .ticket-chat-bubble--staff {
    background: #1e2433;
    border-color: rgba(83, 82, 237, 0.45);
}

.ticket-modal__chat .ticket-chat-bubble--client {
    background: #4f5db8;
    border-color: rgba(104, 119, 198, 0.65);
}

.ticket-chat-item--pending .ticket-chat-bubble {
    opacity: 0.72;
}

.ticket-chat-item--pending .ticket-chat-bubble__time {
    font-style: italic;
}

.ticket-modal__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 100%;
    color: #8b98ad;
    font-size: 0.875rem;
}

.ticket-modal__form-slot {
    flex-shrink: 0;
    margin-top: 0.85rem;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-modal__form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ticket-modal__form[style*="display: none"] {
    display: none !important;
}

.ticket-modal__compose-bar {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.ticket-modal__compose-input {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    max-height: 128px;
    height: 44px;
    resize: none;
    overflow-y: hidden;
    padding: 0.65rem 0.85rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(8, 13, 22, 0.55) !important;
    color: #eef1f7 !important;
    font-size: 0.875rem !important;
    line-height: 1.35;
    box-sizing: border-box;
}

.ticket-modal__compose-input:focus {
    outline: none;
    border-color: rgba(83, 82, 237, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(83, 82, 237, 0.12) !important;
}

.ticket-modal__send-btn {
    flex-shrink: 0;
    white-space: nowrap;
    height: 44px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.ticket-modal__form .dash-btn {
    flex-shrink: 0;
}

.ticket-modal__attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0.5rem 0.75rem;
    height: 44px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #b8b7ff;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.ticket-modal__attach-btn:hover {
    background: rgba(83, 82, 237, 0.12);
    border-color: rgba(83, 82, 237, 0.35);
}

.ticket-modal__attach-btn input[type="file"] {
    display: none;
}

.ticket-modal__attach-btn--block {
    width: 100%;
    justify-content: center;
}

.ticket-modal__attach-preview {
    display: block;
    min-width: 0;
    font-size: 0.75rem;
    color: #8b98ad;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0.15rem;
}

/* Card de imagens no chat */
.ticket-attach-card {
    display: inline-block;
    vertical-align: top;
    margin-top: 0.15rem;
    padding: 0.45rem;
    border-radius: 12px;
    background: rgba(8, 13, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.ticket-attach-card--client {
    background: rgba(104, 119, 198, 0.22);
    border-color: rgba(104, 119, 198, 0.4);
}

.ticket-attach-card--support {
    background: rgba(8, 13, 22, 0.75);
}

.ticket-attach-card__grid {
    display: grid;
    gap: 0.4rem;
}

.ticket-attach-card__grid--count-1 {
    grid-template-columns: 220px;
}

.ticket-attach-card__grid--count-2 {
    grid-template-columns: repeat(2, 170px);
}

.ticket-attach-card__grid--count-3,
.ticket-attach-card__grid--count-4 {
    grid-template-columns: repeat(2, 148px);
}

.ticket-img-card {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 10px;
    line-height: 0;
    transition: transform 0.2s ease;
}

.ticket-img-card:hover {
    transform: translateY(-2px);
}

.ticket-img-card__frame {
    display: block;
    padding: 3px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.ticket-img-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
}

@media (max-width: 520px) {
    .ticket-attach-card__grid--count-1 {
        grid-template-columns: minmax(0, 1fr);
    }

    .ticket-attach-card__grid--count-2,
    .ticket-attach-card__grid--count-3,
    .ticket-attach-card__grid--count-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ticket-attach-card {
        display: block;
        width: 100%;
    }
}

.ticket-img-card__zoom {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 8px;
    background: rgba(8, 13, 22, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eef1f7;
    font-size: 0.95rem;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.ticket-img-card:hover .ticket-img-card__zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox de imagens */
body.ticket-lightbox-open {
    overflow: hidden;
}

.ticket-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1070;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.ticket-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ticket-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 14, 0.9);
    backdrop-filter: blur(6px);
}

.ticket-lightbox__panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(92vw, 980px);
    max-height: 90vh;
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.ticket-lightbox.is-open .ticket-lightbox__panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.ticket-lightbox__figure {
    margin: 0;
    max-width: 100%;
    text-align: center;
}

.ticket-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 5rem);
    margin: 0 auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    transition: opacity 0.25s ease;
}

.ticket-lightbox__img.is-changing {
    opacity: 0.35;
}

.ticket-lightbox__caption {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: #b8c0d0;
    line-height: 1.4;
    word-break: break-word;
}

.ticket-lightbox__counter {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9aa6ba;
    letter-spacing: 0.02em;
}

.ticket-lightbox__close {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #eef1f7;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ticket-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.ticket-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #eef1f7;
    font-size: 1.75rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ticket-lightbox__nav:hover {
    background: rgba(83, 82, 237, 0.55);
    transform: translateY(-50%) scale(1.05);
}

.ticket-lightbox__nav--prev {
    left: -3.25rem;
}

.ticket-lightbox__nav--next {
    right: -3.25rem;
}

@media (max-width: 767.98px) {
    .ticket-lightbox__nav--prev {
        left: 0.25rem;
    }

    .ticket-lightbox__nav--next {
        right: 0.25rem;
    }

    .ticket-lightbox__close {
        top: 0.25rem;
        right: 0.25rem;
    }

    .ticket-modal__compose-bar {
        gap: 0.4rem;
    }

    .ticket-modal__attach-btn:not(.ticket-modal__attach-btn--block) span {
        display: none;
    }

    .ticket-modal__attach-btn:not(.ticket-modal__attach-btn--block) {
        padding: 0.5rem;
        width: 44px;
        justify-content: center;
    }

    .ticket-modal__send-btn {
        padding: 0.5rem 0.75rem;
    }
}

@media (min-width: 992px) {
    .ticket-modal__dialog {
        width: min(800px, calc(100vw - 2rem));
    }

    .ticket-modal__content {
        height: min(75vh, 640px);
        min-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .ticket-modal__dialog {
        width: auto;
        max-width: calc(100vw - 1rem);
    }

    .ticket-modal__content {
        height: min(540px, calc(100vh - 2rem));
    }

    .ticket-modal__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
    }

    .ticket-modal__aside {
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 1rem 1.15rem;
    }

    .ticket-modal__close-btn {
        margin-top: 0;
    }

    .ticket-modal__main {
        padding: 1rem 1.15rem 1.15rem;
    }

    .ticket-modal__form-slot {
        height: auto;
        min-height: 88px;
    }

    .ticket-modal__form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Modal abrir chamado */
.ticket-open-modal__dialog {
    width: 520px;
    max-width: calc(100vw - 2rem);
    margin: 1rem auto;
}

.ticket-open-modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 580px;
    max-height: calc(100vh - 2.5rem);
    background: #111a2b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: #eef1f7;
    overflow: hidden;
}

.ticket-open-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #8b98ad;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ticket-open-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #eef1f7;
}

.ticket-open-modal__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 1.35rem 1.5rem 1.35rem;
    box-sizing: border-box;
    overflow: hidden;
}

.ticket-open-modal__title {
    flex-shrink: 0;
    margin: 0 0 1.25rem !important;
    font-size: 1.0625rem !important;
}

.ticket-open-modal__form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.ticket-open-modal__fields {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.2rem;
    margin-right: -0.2rem;
}

.ticket-open-modal__form .dash-form-field {
    margin-bottom: 0.85rem;
}

.ticket-open-modal__form .dash-form-field--attachments {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ticket-open-modal__form .dash-form-field--attachments .dash-form-field__label {
    margin-bottom: 0;
}

.ticket-open-modal__form .dash-form-field--attachments .dash-form-field__hint {
    margin-top: 0;
}

.ticket-open-modal__file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.ticket-open-modal__form .ticket-modal__attach-preview {
    display: block;
    margin-top: 0;
    text-align: center;
    white-space: normal;
}

.ticket-open-modal__form .dash-form-field__label,
.ticket-open-modal__form .dash-form-field > label:not(.ticket-modal__attach-btn) {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c5cdd9;
}

.ticket-open-modal__form .dash-form-field label.ticket-modal__attach-btn {
    margin-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #b8b7ff;
}

.ticket-open-modal__form .dash-form-field label.ticket-modal__attach-btn.ticket-modal__attach-btn--block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
}

.ticket-open-modal__form .dash-form-field label.ticket-modal__attach-btn.ticket-modal__attach-btn--block i {
    font-size: 1.25rem;
    line-height: 1;
}

.ticket-open-modal__form .dash-form-control {
    width: 100%;
    padding: 0.75rem 0.9rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(8, 13, 22, 0.55) !important;
    color: #eef1f7 !important;
    font-size: 0.9375rem !important;
}

.ticket-open-modal__select-wrap {
    position: relative;
    display: block;
}

.ticket-open-modal__select-wrap > i {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #8b98ad;
    pointer-events: none;
}

.ticket-open-modal__select {
    display: block;
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(8, 13, 22, 0.55);
    color: #eef1f7;
    font-size: 0.9375rem;
    line-height: 1.5;
    cursor: pointer;
    color-scheme: dark;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ticket-open-modal__select:focus {
    outline: none;
    border-color: rgba(83, 82, 237, 0.45);
    box-shadow: 0 0 0 3px rgba(83, 82, 237, 0.12);
}

.ticket-open-modal__select:invalid {
    color: #8b98ad;
}

.ticket-open-modal__select option {
    margin: 0;
    padding: 0.5rem;
    background: #111a2b;
    color: #eef1f7;
}

.ticket-open-modal__select option[disabled] {
    color: #8b98ad;
}

.ticket-open-modal__form textarea.dash-form-control {
    flex: 0 0 auto;
    min-height: 108px;
    max-height: 108px;
    resize: none;
}

.ticket-open-modal__form .dash-form-control:focus {
    outline: none;
    border-color: rgba(83, 82, 237, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(83, 82, 237, 0.12) !important;
}

.ticket-open-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-shrink: 0;
    margin-top: 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #111a2b;
}

@media (max-width: 575.98px) {
    .ticket-open-modal__dialog {
        width: auto;
        max-width: calc(100vw - 1rem);
    }

    .ticket-open-modal__content {
        height: min(520px, calc(100vh - 2rem));
    }

    .ticket-open-modal__body {
        padding: 1.15rem 1.15rem 1rem;
    }

    .ticket-open-modal__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
}

.account-page.content {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/* Página Meu perfil */
.account-page .dashboard-main {
    max-width: 1000px;
}

.account-page .dash-page-head {
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.account-page .dash-page-head__icon {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.625rem;
    border-radius: 12px;
}

.account-page .dash-page-head__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.account-page .dash-page-head__subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #8b98ad;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.account-profile-card {
    overflow: hidden;
}

.account-profile-card__identity {
    text-align: center;
}

.account-profile-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
}

.account-profile-card__avatar-wrap {
    display: inline-flex;
    padding: 3px;
    margin-bottom: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(83, 82, 237, 0.55), rgba(154, 163, 212, 0.35));
}

.account-profile-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #111a2b;
    display: block;
}

.account-profile-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    color: #f4f6fb;
    font-size: 1.125rem;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.account-profile-card__email {
    font-size: 0.8125rem;
    color: #6d7a8f;
    margin: 0;
    word-break: break-word;
    line-height: 1.4;
}

.account-profile-card__balance {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(83, 82, 237, 0.1);
    border: 1px solid rgba(83, 82, 237, 0.22);
}

.account-profile-card__balance-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9aa3d4;
}

.account-profile-card__balance-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: #f4f6fb;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-size: 1.375rem;
}

.account-profile-card__since {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.8125rem;
    color: #6d7a8f;
    line-height: 1.4;
}

.account-profile-card__since i {
    font-size: 1rem;
    color: #5352ed;
    flex-shrink: 0;
}

.account-profile-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    background: rgba(83, 82, 237, 0.14);
    border: 1px solid rgba(83, 82, 237, 0.28);
    color: #b8b7ff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.account-profile-card__link:hover {
    background: rgba(83, 82, 237, 0.22);
    color: #eef1f7;
    text-decoration: none;
}

.account-form-card .card-body--padded {
    padding: 1.35rem 1.5rem 1.25rem;
}

.account-form__section {
    padding-bottom: 1.25rem;
}

.account-form__section + .account-form__section {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.account-form__section--last {
    padding-bottom: 0;
}

.account-form__section-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #f4f6fb;
    font-size: 1.0625rem;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.account-form__row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    row-gap: 0.85rem;
}

.account-form__row > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.account-page .dash-form-field {
    margin-bottom: 0;
}

.account-page .dash-form-field label {
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c5cdd9;
}

.account-page .dash-form-field__wrap > i {
    left: 0.85rem;
    font-size: 1.05rem;
    color: #5c677a;
}

.account-page .dash-form-field__wrap .dash-form-control {
    padding: 0.75rem 0.9rem 0.75rem 2.45rem !important;
    font-size: 0.9375rem !important;
    border-radius: 10px !important;
}

.account-page .dash-form-field__hint {
    margin-top: 0.35rem;
    font-size: 0.75rem;
}

.account-form__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.account-form__actions .dash-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .account-page .dashboard-main {
        max-width: 100%;
    }

    .account-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .account-profile-card__body {
        padding: 1.15rem;
    }

    .account-form-card .card-body--padded {
        padding: 1.15rem;
    }
}

@media (min-width: 1200px) {
    .account-layout {
        grid-template-columns: 300px minmax(0, 1fr);
    }
}

.dash-form-field {
    margin-bottom: 1.1rem;
}

.dash-form-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c5cdd9;
}

.dash-form-field__optional {
    font-weight: 500;
    color: #6d7a8f;
    font-size: 0.8125rem;
}

.dash-form-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.dash-form-field__wrap > i {
    position: absolute;
    left: 0.9rem;
    font-size: 1.125rem;
    color: #6d7a8f;
    pointer-events: none;
    z-index: 1;
}

.dash-form-field__wrap .dash-form-control {
    width: 100%;
    padding: 0.8rem 0.9rem 0.8rem 2.6rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(8, 13, 22, 0.55) !important;
    color: #eef1f7 !important;
    font-size: 0.9375rem !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.dash-form-field__wrap .dash-form-control::placeholder {
    color: #6d7a8f;
}

.dash-form-field__wrap .dash-form-control:focus {
    border-color: rgba(83, 82, 237, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(83, 82, 237, 0.12) !important;
    background: rgba(8, 13, 22, 0.65) !important;
    outline: none;
}

.dash-form-field__wrap--disabled .dash-form-control {
    opacity: 0.72;
    cursor: not-allowed;
}

.dash-form-field__hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: #6d7a8f;
}

/* Footer da Ã¡rea do cliente */
.dashboard-footer {
    margin-top: auto;
    padding: 3rem 0 2rem;
    background: #060a12;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #8b98ad;
}

.dashboard-footer__brand img {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
}

.dashboard-footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #8b98ad;
    max-width: 30ch;
    margin: 0;
}

.dashboard-footer__title {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #eef1f7;
    margin-bottom: 1rem;
}

.dashboard-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-footer__links li {
    margin-bottom: 0.45rem;
}

.dashboard-footer__links a {
    color: #8b98ad;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dashboard-footer__links a:hover {
    color: #b8bfdc;
    text-decoration: none;
}

.dashboard-footer__divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.25rem;
}

.dashboard-footer__bottom {
    text-align: center;
    font-size: 0.8125rem;
    color: #6d7a8f;
}

.dashboard-footer__bottom p {
    margin-bottom: 0.35rem;
}

.dashboard-footer__credit {
    font-size: 0.75rem !important;
    color: #5a6578 !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .dash-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .dash-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .dash-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .dash-hero__icon {
        margin: 0 auto;
    }

    .dash-hero__lead {
        margin: 0 auto;
    }

    .dash-hero__wallet {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .dashboard .content {
        padding: 1.5rem 0 2rem;
    }

    .dashboard .card-body--padded,
    .dashboard .card:not(.dash-card) .card-body {
        padding: 1.25rem;
    }

    .dash-hero {
        margin-bottom: 1.75rem;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .dash-empty {
        padding: 1.75rem 1.25rem;
    }
}

.dash-btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.dash-btn--sm {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
}

.invoice-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.invoice-page-head__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #9aa8c0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}

.invoice-page-head__back:hover {
    color: #eef1f7;
    text-decoration: none;
}

.invoice-page-head__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.invoice-embed .invoice-document__sheet {
    margin: 0;
    max-width: none;
}

/* Fatura (painel + impressão) */
.invoice-sheet--embed {
    color: #eef1f7;
}

.invoice-sheet__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    flex-wrap: wrap;
}

.invoice-sheet__logo {
    display: block;
    font-family: var(--font-display, inherit);
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4f6fb;
}

.invoice-sheet__tagline {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.8125rem;
    color: #8b98ad;
}

.invoice-sheet__head-meta {
    text-align: right;
}

.invoice-sheet__number {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #eef1f7;
    margin-bottom: 0.45rem;
}

.invoice-sheet__status {
    white-space: nowrap;
}

.invoice-sheet__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.invoice-sheet__box {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 13, 22, 0.35);
}

.invoice-sheet__box h3 {
    margin: 0 0 0.55rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8b98ad;
}

.invoice-sheet__box p {
    margin: 0.15rem 0;
    font-size: 0.8125rem;
    color: #b8bfdc;
}

.invoice-sheet__box p span {
    color: #8b98ad;
    margin-right: 0.2rem;
}

.invoice-sheet__strong {
    font-weight: 700;
    color: #eef1f7 !important;
}

.invoice-sheet__paid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.invoice-sheet__paid .payment-method-badge__logo {
    max-width: 72px;
    max-height: 24px;
}

.invoice-sheet__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(83, 82, 237, 0.08);
}

.invoice-sheet__item-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #f4f6fb;
    margin-bottom: 0.15rem;
}

.invoice-sheet__item-period {
    display: block;
    font-size: 0.75rem;
    color: #8b98ad;
}

.invoice-sheet__item-price {
    font-family: var(--font-display, inherit);
    font-size: 1rem;
    font-weight: 700;
    color: #eef1f7;
    white-space: nowrap;
}

.invoice-sheet__totals {
    width: min(100%, 280px);
    margin: 1.15rem 0 0 auto;
}

.invoice-sheet__totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    color: #9aa8c0;
}

.invoice-sheet__total {
    margin-top: 0.35rem;
    padding-top: 0.65rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem !important;
    font-weight: 700;
    color: #f4f6fb !important;
}

.invoice-sheet__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: #6d7a8f;
    text-align: center;
}

.invoice-card .card-body--padded {
    padding: 1.5rem 1.75rem;
}

.invoice-side-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #eef1f7;
}

.invoice-side-card__amount {
    font-family: var(--font-display, inherit);
    font-size: 1.75rem;
    font-weight: 700;
    color: #eef1f7;
    margin-bottom: 0.75rem;
}

.invoice-side-card__meta {
    font-size: 0.875rem;
    color: #9aa8c0;
    margin-bottom: 0.45rem;
}

.invoice-side-card__status {
    display: inline-flex;
    margin-top: 0.5rem;
}

.invoice-side-card__paid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.invoice-side-card__paid .payment-method-badge__logo {
    max-width: 72px;
    max-height: 24px;
}

/* Faturas */
.dash-stats--invoices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.75rem;
}

.dash-stat--wallet::before {
    background: linear-gradient(180deg, #9aa3d4, #6362ff);
}

.dash-stat--due::before {
    background: linear-gradient(180deg, #fc8181, #e53e3e);
}

.dash-stat--due .dash-stat__icon {
    background: rgba(252, 129, 129, 0.14);
    color: #fc8181;
}

.dash-stat--wallet .dash-stat__icon {
    background: rgba(83, 82, 237, 0.18);
    color: #a5a4ff;
}

.dash-card__lead {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: #8b98ad;
    max-width: 38rem;
}

button.dash-segment__item,
button.dash-stat,
button.dash-empty__btn {
    appearance: none;
    -webkit-appearance: none;
}

button.dash-empty__btn {
    font-family: inherit;
}

.dash-segment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    padding: 1.15rem 1.75rem 0.35rem;
    margin-bottom: 0.5rem;
}

.dash-segment__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.35rem;
    padding: 0.5rem 0.85rem 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    color: #9aa8c0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex: 0 0 auto;
}

.dash-segment__label {
    white-space: nowrap;
}

.dash-segment__item:hover {
    color: #eef1f7;
    background: rgba(83, 82, 237, 0.12);
    border-color: rgba(83, 82, 237, 0.28);
    text-decoration: none;
}

.dash-segment__item.is-active {
    color: #ecebff;
    background: rgba(83, 82, 237, 0.22);
    border-color: rgba(83, 82, 237, 0.4);
}

.dash-segment__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
}

.dash-segment__item.is-active .dash-segment__count {
    background: rgba(255, 255, 255, 0.14);
}

.dash-table--invoices {
    table-layout: fixed;
}

.dash-table__col-invoice { width: 34%; }
.dash-table__col-invoice-due { width: 20%; }
.dash-table__col-invoice-amount { width: 16%; }
.dash-table__col-invoice-status { width: 18%; }
.dash-table__col-invoice-action { width: 12%; }

.invoices-panel.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.invoices-panel {
    margin-top: 0.15rem;
}

.dash-btn--table {
    padding: 0.38rem 0.8rem;
    min-height: 2rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.dash-stat[type="button"],
button.dash-stat {
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dash-stats .dash-stat[type="button"]:hover,
.dash-stats button.dash-stat:hover {
    transform: translateY(-3px);
}

.dash-table__invoice {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.dash-table__invoice-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: #eef1f7;
}

.dash-table__invoice-service {
    font-size: 0.75rem;
    color: #8b98ad;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-table__price-value--credit {
    color: #68d391;
}

.dash-table--wallet {
    table-layout: fixed;
}

.dash-table__col-wallet-gateway { width: 34%; }
.dash-table__col-wallet-amount { width: 18%; }
.dash-table__col-wallet-date { width: 28%; }
.dash-table__col-wallet-status { width: 20%; }

.billing-gateway {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.billing-gateway--mp {
    background: rgba(0, 188, 212, 0.14);
    color: #4fd1eb;
}

.billing-gateway--ps {
    background: rgba(246, 173, 85, 0.14);
    color: #f6ad55;
}

.billing-gateway--pp {
    background: rgba(99, 179, 237, 0.14);
    color: #63b3ed;
}

.billing-gateway--default {
    background: rgba(255, 255, 255, 0.06);
    color: #b8bfdc;
}

@media (max-width: 1199.98px) {
    .dash-stats--invoices {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 991.98px) {
    .dash-table--invoices,
    .dash-table--wallet {
        table-layout: auto;
        min-width: 640px;
    }
}

@media (max-width: 575.98px) {
    .dash-segment {
        padding-inline: 1.25rem;
        gap: 0.5rem;
    }

    .dash-segment__item {
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
        padding-inline: 0.75rem;
    }
}

.service-panel-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-panel-card__status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-panel-stat {
    margin-bottom: 1.25rem;
}

.service-panel-stat__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.service-panel-stat strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-panel-meter {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

.service-panel-meter span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    transition: width 0.35s ease;
}

.service-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-panel-actions .dash-btn {
    justify-content: center;
}

@media (min-width: 992px) {
    .service-panel-actions {
        margin-top: 0.5rem;
    }
}

/* ── Service management (Pterodactyl-style) ── */

.svr-manage {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.svr-manage__hero .card-body--padded {
    padding: 1.5rem 1.75rem;
}

.svr-manage__hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.svr-manage__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.15rem;
}

.svr-manage__plan {
    font-size: 0.9rem;
}

.svr-manage__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.svr-manage__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1.25rem 0 0;
    margin: 0;
    border: none;
}

.svr-manage__stat {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 5.5rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__stat-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.svr-manage__stat strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 0.625rem;
    min-height: 1.25rem;
    word-break: break-all;
}

.svr-manage__stat .service-panel-meter {
    margin-top: auto;
}

.svr-manage__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.85rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.svr-manage__meta-sep {
    opacity: 0.35;
}

.svr-manage__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.svr-manage__power-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0 0;
    margin: 0;
    border: none;
}

.svr-manage__power-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.svr-manage__power-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.svr-manage__power-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.svr-manage__power-btn--start {
    border-color: rgba(74, 222, 128, 0.35);
    color: #4ade80;
}

.svr-manage__power-btn--start:hover:not(:disabled) {
    background: rgba(74, 222, 128, 0.12);
}

.svr-manage__power-btn--restart {
    border-color: rgba(96, 165, 250, 0.35);
    color: #93c5fd;
}

.svr-manage__power-btn--restart:hover:not(:disabled) {
    background: rgba(96, 165, 250, 0.12);
}

.svr-manage__power-btn--stop {
    border-color: rgba(248, 113, 113, 0.35);
    color: #f87171;
}

.svr-manage__power-btn--stop:hover:not(:disabled) {
    background: rgba(248, 113, 113, 0.12);
}

/* ── Viking panel strip (stats + power) ── */

.svr-viking-strip {
    margin-top: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.svr-viking-strip__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.svr-viking-strip__game {
    flex: 0 0 auto;
}

.svr-viking-strip__game-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.35rem;
}

.svr-viking-strip__info {
    flex: 1 1 220px;
}

.svr-viking-strip__name {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.svr-viking-strip__address {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.svr-viking-strip__address-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: none;
    letter-spacing: 0;
}

.svr-viking-strip__address-value,
#panelAddress {
    color: #93c5fd;
    font-weight: 700;
    word-break: break-all;
}

.svr-viking-strip__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    margin-left: 0.15rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.svr-viking-strip__copy i.bx {
    font-family: boxicons !important;
    font-size: 0.85rem;
}

.svr-viking-strip__copy:hover:not(:disabled) {
    background: rgba(83, 82, 237, 0.15);
    color: #a5b4fc;
}

.svr-viking-strip__copy:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.svr-viking-strip__players {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.35rem;
    padding: 0.22rem 0.62rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #86efac;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.svr-viking-strip__players.is-offline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.45);
}

.svr-viking-strip__players.is-online {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.28);
    color: #86efac;
}

.svr-viking-strip__players-icon {
    font-family: boxicons !important;
    font-size: 1rem;
    animation: svr-viking-players-walk 0.9s ease-in-out infinite;
}

.svr-viking-strip__players.is-offline .svr-viking-strip__players-icon {
    animation: none;
    opacity: 0.65;
}

.svr-viking-strip__players-count {
    font-variant-numeric: tabular-nums;
    font-size: 0.86rem;
    font-weight: 700;
}

.svr-viking-strip__players-label {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.88;
}

@keyframes svr-viking-players-walk {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(2px); }
}

.svr-viking-strip__power {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.svr-viking-power {
    width: 42px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.svr-viking-power i.bx {
    font-family: boxicons !important;
    font-size: 1.15rem;
}

.svr-viking-power:hover:not(:disabled) {
    background: rgba(83, 82, 237, 0.15);
    border-color: rgba(83, 82, 237, 0.45);
    color: #a5b4fc;
}

.svr-viking-power:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.svr-viking-power--kill {
    border-color: rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

.svr-viking-power--kill:hover:not(:disabled) {
    background: rgba(248, 113, 113, 0.18);
    border-color: rgba(248, 113, 113, 0.55);
    color: #fecaca;
}

.svr-viking-strip__rings {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.svr-viking-ring-item {
    text-align: center;
    min-width: 110px;
}

.svr-viking-ring {
    width: 118px;
    height: 118px;
    margin: 0 auto;
    position: relative;
    background: none;
}

.svr-viking-ring::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    inset: 0;
}

.svr-viking-ring__left,
.svr-viking-ring__right {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.svr-viking-ring__left {
    left: 0;
}

.svr-viking-ring__right {
    right: 0;
}

.svr-viking-ring__bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    border-color: #5352ed;
    position: absolute;
    top: 0;
    transition: transform 0.45s ease;
}

.svr-viking-ring__left .svr-viking-ring__bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    transform: rotate(0deg);
    transform-origin: center left;
}

.svr-viking-ring__right .svr-viking-ring__bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    transform: rotate(0deg);
    transform-origin: center right;
}

.svr-viking-ring__value {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
}

.svr-viking-ring__value sup {
    font-size: 0.55em;
    top: -0.35em;
    margin-left: 1px;
}

.svr-viking-ring__label {
    margin: 0.45rem 0 0.15rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.svr-viking-ring__meta {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.svr-viking-strip__rings.is-loading .svr-viking-ring__meta {
    color: transparent;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.06) 100%);
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
    border-radius: 6px;
    min-width: 4rem;
    min-height: 0.75rem;
    display: inline-block;
}

.svr-viking-strip__rings.is-loading .svr-viking-ring__value span {
    visibility: hidden;
}

@media (max-width: 767px) {
    .svr-viking-strip__main {
        flex-direction: column;
        align-items: stretch;
    }

    .svr-viking-strip__game {
        text-align: center;
    }

    .svr-viking-strip__game-img {
        width: 72px;
        height: 72px;
    }

    .svr-viking-strip__rings {
        justify-content: center;
    }

    .svr-viking-strip__address {
        font-size: 1.1rem;
        text-align: center;
    }

    .svr-viking-strip__name {
        text-align: center;
    }

    .svr-viking-strip__power {
        justify-content: center;
        width: 100%;
    }
}

.svr-manage__support {
    border-color: rgba(248, 113, 113, 0.25);
}

.svr-manage__support-body {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.svr-manage__support-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    font-size: 1.6rem;
}

.svr-manage__support-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.svr-manage__support-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.svr-manage__notice {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.22);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.svr-manage__notice--warning {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.25);
    color: rgba(255, 255, 255, 0.88);
}

.svr-manage__power {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.svr-manage__power:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.svr-manage__power--start {
    color: #4ade80;
}

.svr-manage__power--stop {
    color: #f87171;
}

.svr-manage__alert {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.svr-manage__panel {
    overflow: hidden;
}

.svr-viking-panel {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
    overflow: hidden;
}

.svr-viking-panel .svr-manage__tabs {
    padding: 0.75rem 1rem;
    gap: 0.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(0, 0, 0, 0.16) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.svr-viking-panel .svr-manage__tab {
    padding: 0.5rem 0.95rem 0.5rem 0.5rem;
    color: rgba(255, 255, 255, 0.58);
}

.svr-viking-panel .svr-manage__tab:hover {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.svr-viking-panel .svr-manage__tab.is-active {
    color: #fff;
    background: rgba(83, 82, 237, 0.2);
    border-color: rgba(99, 102, 241, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svr-viking-panel .svr-manage__tab.is-active .svr-manage__tab-icon {
    background: rgba(99, 102, 241, 0.28);
    color: #c7d2fe;
}

.svr-viking-panel .svr-manage__workspace {
    background: transparent;
}

.svr-viking-panel .svr-manage__pane {
    padding: 1rem 1.15rem 1.25rem;
}

.svr-viking-panel .svr-manage__pane-head {
    margin-bottom: 0.85rem;
}

.svr-viking-panel .svr-manage__pane-title {
    color: #fff;
}

.svr-viking-panel .svr-manage__table-wrap {
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.14);
    box-shadow: none;
}

.svr-viking-panel .svr-manage__table th {
    color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.03);
}

.svr-viking-panel .svr-manage__table td {
    color: rgba(255, 255, 255, 0.88);
}

.svr-viking-panel .svr-manage__empty {
    color: rgba(255, 255, 255, 0.45);
}

.svr-manage__tabs {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(0, 0, 0, 0.16) 100%);
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.45) transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.svr-manage__tabs::-webkit-scrollbar {
    height: 5px;
}

.svr-manage__tabs::-webkit-scrollbar-track {
    background: transparent;
}

.svr-manage__tabs::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.35);
    border-radius: 999px;
}

.svr-manage__tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.55);
}

.svr-manage__tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 40px;
    padding: 0.5rem 0.95rem 0.5rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.svr-manage__tab:focus {
    outline: none;
}

.svr-manage__tab:focus-visible {
    outline: 2px solid rgba(99, 102, 241, 0.55);
    outline-offset: 2px;
}

.svr-manage__tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(165, 180, 252, 0.92);
    flex-shrink: 0;
    transition: background 0.18s ease, color 0.18s ease;
}

.svr-manage__tab-icon i.bx {
    font-size: 1.05rem;
    line-height: 1;
}

.svr-manage__tab-label {
    padding-right: 0.1rem;
}

.svr-manage__tab:hover {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.svr-manage__tab:hover .svr-manage__tab-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #c7d2fe;
}

.svr-manage__tab.is-active {
    color: #fff;
    background: rgba(83, 82, 237, 0.2);
    border-color: rgba(99, 102, 241, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svr-manage__tab.is-active .svr-manage__tab-icon {
    background: rgba(99, 102, 241, 0.28);
    color: #e0e7ff;
}

.svr-manage__workspace {
    min-height: 0;
}

.svr-manage__pane {
    display: none;
    padding: 1.25rem 1.5rem 1.5rem;
}

.svr-manage__pane.is-active {
    display: block;
}

.svr-manage__pane[data-tab-panel="console"] {
    padding: 1rem 1.25rem 1.25rem;
}

.svr-manage__pane[data-tab-panel="console"] .svr-console {
    min-height: 580px;
}

.svr-manage__pane-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.svr-manage__breadcrumb {
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__empty {
    margin: 1.5rem 0;
    padding: 2rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.svr-manage__table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
}

.svr-manage__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.svr-manage__table th,
.svr-manage__table td {
    padding: 0.8rem 1.125rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-manage__table tr:last-child td {
    border-bottom: none;
}

.svr-manage__table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
}

.svr-manage__table td {
    color: rgba(255, 255, 255, 0.85);
}

.svr-manage__folder {
    border: none;
    background: none;
    color: #93c5fd;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.svr-manage__folder:hover {
    text-decoration: underline;
}

.svr-console {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.14);
}

.svr-console__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.svr-console__title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.svr-console__title i.bx {
    font-family: boxicons !important;
    font-size: 1.05rem;
    color: #6366f1;
}

.svr-console__status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
}

.svr-console__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.svr-console__status--live {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.28);
    background: rgba(74, 222, 128, 0.1);
}

.svr-console__status--loading {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.28);
    background: rgba(251, 191, 36, 0.08);
}

.svr-console__status--loading .svr-console__status-dot {
    animation: svr-console-pulse 0.85s ease-in-out infinite;
}

.svr-console__status--polling {
    color: #93c5fd;
    border-color: rgba(147, 197, 253, 0.28);
    background: rgba(96, 165, 250, 0.1);
}

.svr-console__status--offline {
    color: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

@keyframes svr-console-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.svr-console__screen {
    min-height: 480px;
    max-height: 620px;
    position: relative;
    background: #0c1220;
}

.svr-console__screen .xterm-screen {
    background: #0c1220 !important;
}

.svr-console__screen .xterm {
    height: 100%;
    padding: 0.55rem 0.75rem;
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, "Courier New", monospace;
    font-size: 13px;
}

.svr-console__screen .xterm-viewport {
    overflow-y: auto;
    overscroll-behavior: contain;
}

.svr-console__screen .xterm-viewport::-webkit-scrollbar {
    width: 8px;
}

.svr-console__screen .xterm-viewport::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.svr-console__screen .xterm-viewport::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.35);
    border-radius: 999px;
}

.svr-console__screen .xterm-viewport::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

.svr-console__screen .xterm .xterm-cursor-layer,
.svr-console__screen .xterm .xterm-cursor {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.svr-console__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.5;
    background: #0c1220;
}

.svr-console__placeholder--offline {
    font-family: inherit;
}

.svr-console__input-row {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0 1rem;
    min-height: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    margin: 0;
    cursor: text;
}

.svr-console__prompt {
    display: flex;
    align-items: center;
    color: #6366f1;
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.35;
    flex-shrink: 0;
    padding: 0.85rem 0;
    user-select: none;
}

.svr-console__input {
    flex: 1;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    border: none;
    background: transparent;
    color: #eef1f7;
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
    font-size: 0.9375rem;
    line-height: 1.35;
    min-height: 54px;
    padding: 0.85rem 0;
    outline: none;
    cursor: text;
}

.svr-console__input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.svr-console--viking {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.14);
    box-shadow: none;
}

.svr-console--viking .svr-console__head {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.85rem;
}

.svr-console--viking .svr-console__title {
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.svr-console--viking .svr-console__title i.bx {
    color: #6366f1;
}

.svr-console--viking .svr-console__status {
    font-family: inherit;
    font-size: 0.72rem;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.svr-console--viking .svr-console__screen {
    min-height: 520px;
    max-height: 640px;
    background: #0c1220;
}

.svr-console--viking .svr-console__screen .xterm {
    padding: 10px 10px 0;
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.3;
}

.svr-console--viking .svr-console__placeholder {
    background: #0c1220;
    font-family: inherit;
}

.svr-console--viking .svr-console__input-row {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 12px 12px;
    padding: 0 1rem;
    min-height: 56px;
}

.svr-console--viking .svr-console__prompt {
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
    font-size: 14px;
    color: #6366f1;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.95rem 0;
}

.svr-console--viking .svr-console__input {
    font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
    font-size: 14px;
    line-height: 1.4;
    min-height: 56px;
    color: #eef1f7;
    padding: 0.95rem 0;
}

.svr-console--viking .svr-console__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

.svr-console--viking .svr-console__screen .xterm-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
}

.svr-console--viking .svr-console__screen .xterm-viewport::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.22);
}

.svr-manage__pane-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.125rem;
    min-height: 2.25rem;
}

.svr-manage__pane-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.svr-manage__pane-actions .dash-btn {
    gap: 0.5rem;
}

.svr-manage__pane-actions .dash-btn i.bx {
    font-size: 1.05rem;
    line-height: 1;
    margin: 0;
}

.svr-files-modal__dialog.svr-files-modal__dialog--wide {
    width: min(920px, 100%);
}

.svr-panel-perms {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-height: min(68vh, calc(100vh - 280px));
    overflow: auto;
    padding-right: 0.25rem;
}

.svr-panel-perms__group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
}

.svr-panel-perms__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svr-panel-perms__head strong {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
}

.svr-panel-perms__toggle {
    border: none;
    background: none;
    color: #93c5fd;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}

.svr-panel-perms__toggle:hover {
    color: #fff;
}

.svr-panel-perms__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 0.75rem;
}

.svr-panel-perms__chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.78rem;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.svr-panel-perms__chip:hover {
    border-color: rgba(147, 197, 253, 0.45);
    color: #fff;
}

.svr-panel-perms__chip.is-selected,
.svr-panel-perms__chip[aria-pressed="true"] {
    background: rgba(83, 82, 237, 0.28);
    border-color: rgba(83, 82, 237, 0.65);
    color: #fff;
}

.svr-files-modal__dialog--wide .svr-files-modal__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-height: calc(100vh - 11rem);
}

.svr-files-modal__dialog--wide .svr-panel-perms {
    flex: 1 1 auto;
    min-height: 0;
}

.svr-panel-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.svr-panel-action {
    width: 2.125rem;
    height: 2.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.svr-panel-action i.bx {
    font-family: boxicons !important;
    font-size: 1.125rem;
    line-height: 1;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    vertical-align: middle;
    opacity: 1;
}

.svr-panel-action i.bx::before {
    line-height: 1;
    display: block;
}

.svr-panel-action--primary:hover {
    border-color: rgba(96, 165, 250, 0.35);
    color: #93c5fd;
}

.svr-panel-action--danger:hover {
    border-color: rgba(248, 113, 113, 0.35);
    color: #f87171;
}

.svr-panel-action--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.svr-panel-footnote {
    margin: 0;
    padding: 0.85rem 1.125rem 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.svr-panel-table__cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.svr-panel-table__cell--name {
    gap: 0.4rem;
}

.svr-panel-table__text {
    line-height: 1.45;
    word-break: break-word;
}

.svr-panel-table__metric,
.svr-panel-table__date {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.78);
}

.svr-panel-table__status {
    white-space: nowrap;
}

.svr-panel-table__actions {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.svr-panel-backups .svr-manage__pane-head {
    margin-bottom: 1rem;
}

.svr-panel-backups .svr-manage__pane-actions .dash-btn--sm {
    padding: 0.45rem 0.95rem;
}

.svr-panel-backups .svr-manage__table th:last-child,
.svr-panel-backups .svr-manage__table td.svr-panel-table__actions {
    padding-right: 1.25rem;
    text-align: right;
    vertical-align: middle;
}

.svr-panel-backups .svr-manage__table td.svr-panel-table__actions .svr-panel-actions {
    min-height: 2.125rem;
}

.svr-panel-backups .svr-manage__table th,
.svr-panel-backups .svr-manage__table td {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    vertical-align: middle;
}

.svr-panel-backups .svr-manage__table th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .svr-panel-table__cell--name {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.55rem;
    }
}

.svr-panel-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 1rem;
    align-items: start;
}

.svr-panel-sidecard {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.svr-panel-sidecard__title {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.svr-panel-sidecard__text {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.svr-panel-sidecard__text code {
    color: #93c5fd;
}

.svr-panel-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.svr-panel-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.svr-panel-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.svr-panel-form__field > span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
}

.svr-panel-form__input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
}

.svr-panel-form__input:focus {
    border-color: rgba(83, 82, 237, 0.45);
}

.svr-panel-form__input[readonly] {
    opacity: 0.85;
}

.svr-panel-startup__command {
    margin-bottom: 1rem;
}

.svr-panel-startup__java {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(99, 102, 241, 0.08);
}

.svr-panel-startup__java label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
}

.svr-panel-startup__java .svr-panel-form__input {
    max-width: 420px;
}

.svr-panel-startup__section--vars {
    grid-column: 1 / -1;
}

.svr-panel-startup__vars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.9rem;
}

.svr-panel-startup__section {
    margin-top: 0.15rem;
}

.svr-panel-startup__section-title {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.svr-panel-startup__command label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
}

.svr-panel-startup__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.9rem;
}

.svr-panel-startup__var {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.14);
}

.svr-panel-startup__var label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.svr-panel-startup__var-name {
    line-height: 1.35;
}

.svr-panel-startup__env {
    font-family: "IBM Plex Mono", Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(165, 180, 252, 0.88);
}

.svr-panel-startup__var small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.45;
}

.svr-panel-startup__desc {
    margin-top: 0.15rem;
}

.svr-panel-startup__rules {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.38) !important;
}

.svr-panel-startup__rules span {
    margin-right: 0.25rem;
}

.svr-panel-startup__rules code {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    word-break: break-word;
}

.svr-panel-startup__actions {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
}

.svr-panel-startup__danger {
    grid-column: 1 / -1;
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 113, 113, 0.22);
    background: rgba(248, 113, 113, 0.06);
}

.svr-panel-startup__danger .svr-panel-startup__section-title {
    margin: 0 0 0.45rem;
    color: #fecaca;
}

.svr-panel-startup__danger .svr-panel-startup__desc {
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 42rem;
}

.svr-panel-sftp-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    padding: 1.35rem 1.5rem;
}

.svr-panel-sftp {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 1.75rem 2rem;
    align-items: start;
}

.svr-panel-sftp__art {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.35rem;
}

.svr-panel-sftp__art img {
    width: 100%;
    max-width: 180px;
    height: auto;
    opacity: 0.9;
}

.svr-panel-sftp__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.svr-panel-sftp__head {
    margin-bottom: 1.15rem;
}

.svr-panel-sftp__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.svr-panel-sftp__intro {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    font-size: 0.875rem;
}

.svr-panel-sftp__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 0.85rem 0.75rem;
}

.svr-panel-sftp__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.svr-panel-sftp__field--full {
    grid-column: 1 / -1;
}

.svr-panel-sftp__field--sm {
    grid-column: 2;
}

.svr-panel-sftp__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 500;
}

.svr-panel-sftp__input-wrap {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 0;
}

.svr-panel-sftp__input-wrap .svr-panel-form__input {
    flex: 1;
    min-width: 0;
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
}

.svr-panel-sftp__copy {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.svr-panel-sftp__copy:hover {
    background: rgba(83, 82, 237, 0.18);
    border-color: rgba(83, 82, 237, 0.35);
    color: #fff;
}

.svr-panel-sftp__copy i.bx {
    font-size: 1rem;
}

.svr-panel-sftp__field--sm .svr-panel-sftp__copy {
    padding: 0 0.65rem;
}

.svr-panel-sftp__steps {
    margin-top: 1.25rem;
    padding: 0.9rem 1.05rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.18);
}

.svr-panel-sftp__steps h4 {
    margin: 0 0 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.svr-panel-sftp__steps ol {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.65;
}

.svr-panel-sftp__warn {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding-top: 0.15rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(251, 191, 36, 0.88);
}

.svr-panel-sftp__warn i.bx {
    font-size: 1.1rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
}

.svr-console__input:disabled {
    opacity: 0.5;
}

@media (max-width: 991px) {
    .svr-panel-split {
        grid-template-columns: 1fr;
    }

    .svr-panel-sftp-card {
        padding: 1.15rem 1.2rem;
    }

    .svr-panel-sftp {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .svr-panel-sftp__art {
        max-width: 160px;
        margin: 0 auto;
        padding-top: 0;
    }

    .svr-panel-sftp__fields {
        grid-template-columns: 1fr;
    }

    .svr-panel-sftp__field--sm {
        grid-column: 1;
    }

    .svr-manage__hero .card-body--padded {
        padding: 1.25rem 1.35rem;
    }

    .svr-manage__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .svr-manage__stat {
        min-height: 5rem;
        padding: 0.8rem 0.9rem;
    }

    .svr-manage__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .svr-manage__actions {
        justify-content: flex-start;
    }

    .svr-manage__pane {
        padding: 1rem 1.15rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .svr-manage__stats {
        grid-template-columns: 1fr;
    }

    .svr-manage__power-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .svr-manage__power-btn {
        justify-content: center;
        width: 100%;
    }

    .svr-manage__meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .svr-manage__meta-sep {
        display: none;
    }

    .svr-manage__tabs {
        padding: 0.65rem 0.75rem;
        gap: 0.35rem;
    }

    .svr-manage__tab {
        min-height: 36px;
        padding: 0.4rem 0.75rem 0.4rem 0.4rem;
        font-size: 0.78rem;
        gap: 0.45rem;
    }

    .svr-manage__tab-icon {
        width: 1.55rem;
        height: 1.55rem;
        border-radius: 7px;
    }

    .svr-manage__tab-icon i.bx {
        font-size: 0.95rem;
    }
}

@keyframes svr-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.svr-skeleton {
    display: block;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
}

.svr-manage__stats.is-loading strong {
    color: transparent;
    position: relative;
    user-select: none;
    margin-bottom: 0.625rem;
}

.svr-manage__stats.is-loading strong::after {
    content: '';
    position: absolute;
    inset: 0;
    min-height: 1.25rem;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
}

.svr-manage__stats.is-loading .service-panel-meter {
    opacity: 0.85;
}

.svr-manage__stats.is-loading .service-panel-meter span {
    width: 38% !important;
    opacity: 0.45;
}

.svr-manage__stats.is-loading .svr-manage__stat:not(:has(.service-panel-meter))::after {
    content: '';
    display: block;
    height: 5px;
    margin-top: auto;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
}

.svr-manage__table td i.bx {
    margin-right: 0.45rem;
    vertical-align: -0.1em;
    opacity: 0.7;
}

.svr-manage__table td .svr-panel-actions i.bx,
.svr-panel-action i.bx {
    margin: 0;
    vertical-align: middle;
    opacity: 1;
}

.svr-skeleton-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
}

.svr-skeleton-table__head,
.svr-skeleton-table__row {
    display: grid;
    grid-template-columns: repeat(var(--svr-skeleton-cols, 3), minmax(0, 1fr));
    gap: 0.75rem;
}

.svr-skeleton-table__head .svr-skeleton--cell {
    height: 0.75rem;
    opacity: 0.55;
}

.svr-skeleton-table__row .svr-skeleton--cell {
    height: 1rem;
}

.svr-skeleton--console {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: min(420px, 90%);
    margin-bottom: 0.75rem;
}

.svr-skeleton--console span {
    display: block;
    height: 0.65rem;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(99, 102, 241, 0.08) 0%,
        rgba(99, 102, 241, 0.2) 50%,
        rgba(99, 102, 241, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
}

.svr-skeleton--console span:nth-child(1) { width: 92%; }
.svr-skeleton--console span:nth-child(2) { width: 78%; }
.svr-skeleton--console span:nth-child(3) { width: 85%; }
.svr-skeleton--console span:nth-child(4) { width: 64%; }
.svr-skeleton--console span:nth-child(5) { width: 48%; }

.svr-console__placeholder-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.svr-files i.bx {
    font-family: boxicons !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

.svr-files__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.svr-files__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    min-height: 2rem;
    padding: 0.3rem 0.45rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex: 1 1 220px;
}

.svr-files__crumb {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8125rem;
    padding: 0.18rem 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.svr-files__crumb i.bx {
    font-size: 1rem;
    color: #93c5fd;
}

.svr-files__crumb:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.svr-files__crumb-sep {
    color: rgba(255, 255, 255, 0.28);
    user-select: none;
}

.svr-files__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.svr-files__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.svr-files__btn i.bx {
    font-size: 1.05rem;
    color: #93c5fd;
}

.svr-files__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(147, 197, 253, 0.25);
}

.svr-files__btn--ghost {
    background: transparent;
}

.svr-files__btn--danger {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.svr-files__btn--danger i.bx {
    color: #f87171;
}

.svr-files__btn--danger:hover:not(:disabled) {
    background: rgba(248, 113, 113, 0.22);
    border-color: rgba(248, 113, 113, 0.5);
    color: #fff;
}

.svr-files__btn--danger:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.svr-files__check-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svr-files__selection-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
}

.svr-files__selection-bar[hidden] {
    display: none !important;
}

.svr-files__selection-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: #c7d2fe;
}

.svr-files__selection-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.svr-files__btn--sm {
    padding: 0.32rem 0.6rem;
    font-size: 0.78rem;
}

.svr-files__check {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: #6366f1;
    cursor: pointer;
    flex-shrink: 0;
}

.svr-files-item--selected {
    background: rgba(99, 102, 241, 0.06);
}

.svr-files__confirm-list {
    margin: 0.65rem 0 0;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    max-height: 9rem;
    overflow: auto;
}

.svr-files__confirm-list li {
    margin: 0.2rem 0;
}

.svr-files__confirm-hint {
    margin: 0.65rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.svr-files-list {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.14);
}

.svr-files-list__body {
    min-height: 480px;
    max-height: 580px;
    overflow: auto;
}

.svr-files-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.svr-files-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
    text-align: left;
    background: rgba(18, 24, 38, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.svr-files-table tbody td {
    padding: 0.55rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
}

.svr-files-table tbody tr:last-child td {
    border-bottom: none;
}

.svr-files-table__check {
    width: 2.75rem;
    text-align: center;
}

.svr-files-table__icon {
    width: 3rem;
}

.svr-files-table__icon-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.svr-files-table__name {
    width: auto;
}

.svr-files-table__size {
    width: 7.5rem;
}

.svr-files-table__date {
    width: 10.5rem;
}

.svr-files-table__actions {
    width: 5.5rem;
    text-align: right;
}

.svr-files-table thead .svr-files-table__actions {
    text-align: right;
}

.svr-files-table thead .svr-files-table__check {
    text-align: center;
}

.svr-files-item {
    cursor: pointer;
    transition: background 0.12s ease;
}

.svr-files-item:hover td,
.svr-files-item:focus-visible td {
    background: rgba(99, 102, 241, 0.08);
}

.svr-files-item:focus-visible {
    outline: none;
}

.svr-files-item--selected td {
    background: rgba(99, 102, 241, 0.06);
}

.svr-files-item--parent {
    color: rgba(255, 255, 255, 0.65);
}

.svr-files-empty-row td {
    padding: 0;
    border-bottom: none;
}

.svr-files-item__name {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.875rem;
}

.svr-files-item--folder .svr-files-item__name {
    color: #bfdbfe;
    font-weight: 500;
}

.svr-files-item__icon {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svr-files-item__icon i.bx {
    font-size: 1.15rem;
}

.svr-files-item__icon--folder {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

.svr-files-item__icon--file {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
}

.svr-files-item__icon--code {
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
}

.svr-files-item__icon--config {
    background: rgba(167, 139, 250, 0.12);
    color: #c4b5fd;
}

.svr-files-item__icon--archive {
    background: rgba(244, 114, 182, 0.12);
    color: #f9a8d4;
}

.svr-files-item__icon--media {
    background: rgba(52, 211, 153, 0.12);
    color: #6ee7b7;
}

.svr-files-item__icon--text {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.svr-files-item__icon--muted {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
}

.svr-files-item__size,
.svr-files-item__date {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.svr-files-item--skeleton {
    pointer-events: none;
}

.svr-files-item--skeleton .svr-skeleton {
    display: block;
    height: 0.75rem;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: svr-shimmer 1.4s ease-in-out infinite;
}

.svr-files-item--skeleton .svr-files-table__icon .svr-skeleton {
    width: 1.25rem;
    height: 1.25rem;
}

.svr-files-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 2.5rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

.svr-files-empty i.bx {
    font-size: 2rem;
    color: rgba(147, 197, 253, 0.45);
    margin-bottom: 0.25rem;
}

.svr-files-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.svr-files-empty span {
    font-size: 0.8125rem;
}

.svr-files-list__foot {
    padding: 0.45rem 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.02);
}

.svr-files__row-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.svr-files__action {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.svr-files__action i.bx {
    font-size: 0.95rem;
}

.svr-files__action:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.svr-files__action--edit:hover {
    border-color: rgba(96, 165, 250, 0.35);
    color: #93c5fd;
}

.svr-files__action--rename:hover {
    border-color: rgba(96, 165, 250, 0.35);
    color: #93c5fd;
}

.svr-files__action--delete:hover {
    border-color: rgba(248, 113, 113, 0.35);
    color: #f87171;
}

.svr-files-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.svr-files-modal[hidden] {
    display: none !important;
}

.svr-files-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.72);
    backdrop-filter: blur(4px);
}

.svr-files-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #121a2b;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.svr-files-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svr-files-modal__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.svr-files-modal__close {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}

.svr-files-modal__close:hover {
    color: #fff;
}

.svr-files-modal__body {
    padding: 1.15rem 1.25rem;
    overflow: auto;
}

.svr-files-modal__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svr-panel-confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0.35rem 0.5rem 0.15rem;
}

.svr-panel-confirm__icon {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.28);
    color: #f87171;
    font-size: 1.75rem;
}

.svr-panel-confirm__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 34rem;
}

.svr-panel-confirm__hint {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.48);
}

.svr-files__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.svr-files__field:last-child {
    margin-bottom: 0;
}

.svr-files__field > span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

.svr-files__input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.svr-files__input:focus {
    border-color: rgba(99, 102, 241, 0.45);
}

.svr-files__editor {
    width: 100%;
    min-height: 220px;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b1220;
    color: #e2e8f0;
    font-family: "IBM Plex Mono", Consolas, "Courier New", monospace;
    font-size: 0.8125rem;
    line-height: 1.45;
    resize: vertical;
    outline: none;
}

.svr-files__editor:focus {
    border-color: rgba(99, 102, 241, 0.45);
}

.svr-files__path {
    margin: 0 0 0.75rem;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.svr-files__confirm-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.svr-files__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.55);
}

.dash-btn--danger {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

.dash-btn--danger:hover {
    background: rgba(248, 113, 113, 0.25);
    color: #fff;
}

@media (max-width: 767px) {
    .svr-files__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .svr-files__actions {
        width: 100%;
    }

    .svr-files__btn {
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
    }

    .svr-files__selection-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .svr-files__selection-actions {
        width: 100%;
    }

    .svr-files__selection-actions .svr-files__btn {
        flex: 1 1 auto;
    }

    .svr-files-list__body {
        overflow-x: auto;
    }

    .svr-files-table {
        min-width: 640px;
    }

    .svr-files-table__date {
        width: 8.5rem;
    }
}
