﻿/* ============================================================
   HOXTA THEME â€” single-file stylesheet for WHMCS Nexus 9
   ------------------------------------------------------------
   Page scope is controlled via body classes:
     .hxo-themed       â€” applies dark Inter palette
     .hxo-shell        â€” logged-in shell with sidebar + topbar
     .page-homepage    â€” guest hero on / (added by Nexus)
     .page-login       â€” /login.php
     .page-clientregister, .page-register â€” /register.php
     .page-clientareahome â€” dashboard
   Native <select>: global rules = register look. Opt-out class: .hxo-no-theme-select
   ============================================================ */

/* ============================================================
   1. Tokens
   ============================================================ */
:root {
    --hx-bg: #0a1220;
    --hx-bg-deep: #070d18;
    --hx-bg-card: rgba(16, 26, 44, 0.5);
    --hx-bg-card-solid: rgba(14, 22, 40, 0.95);
    --hx-bg-muted: rgba(30, 45, 71, 0.5);
    --hx-bg-input: rgba(20, 32, 58, 0.8);
    --hx-bg-input-strong: rgba(18, 30, 52, 0.92);
    --hx-text: #e8eef5;
    --hx-text-muted: #7a8ba3;
    --hx-text-soft: #8b9cb5;
    --hx-primary: #19c3ff;
    --hx-primary-hover: #5ddbff;
    --hx-primary-dark: #0ea5e9;
    --hx-border: rgba(30, 45, 71, 0.8);
    --hx-border-soft: rgba(25, 195, 255, 0.12);
    --hx-border-input: rgba(35, 55, 88, 0.95);
    --hx-section-divider: rgba(25, 195, 255, 0.08);
    --hx-success: #22c55e;
    --hx-warning: #eab308;
    --hx-danger: #ef4444;
}

/* ============================================================
   2. Shared keyframes
   ============================================================ */
@keyframes hxoLogoXGlow {
    0%, 100% { color: #19c3ff; text-shadow: 0 0 8px rgba(25, 195, 255, 0.35); }
    50% { color: #78e6ff; text-shadow: 0 0 18px rgba(25, 195, 255, 0.7); }
}

@keyframes hxoLogoXBar {
    0%, 100% { opacity: 0.8; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.08); }
}

/* ============================================================
   3. Sidebar logo (shared on landing, login, register, clientarea)
   ============================================================ */
.sidebar-logo,
.hero-nav .sidebar-logo,
.login-branding .sidebar-logo,
.register-logo .sidebar-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f3f8ff !important;
    line-height: 1;
    text-decoration: none !important;
}

.sidebar-logo .logo-x {
    position: relative;
    color: var(--hx-primary) !important;
    text-shadow: 0 0 12px rgba(25, 195, 255, 0.45);
}

.sidebar-logo .logo-x::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -4px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(25, 195, 255, 0.2), rgba(25, 195, 255, 1), rgba(25, 195, 255, 0.2));
    box-shadow: 0 0 10px rgba(25, 195, 255, 0.8);
    transform-origin: center;
    opacity: 0;
    transform: scaleX(0.6);
    transition: all 0.25s ease;
}

.sidebar-logo:hover .logo-x { animation: hxoLogoXGlow 1.1s ease-in-out 1; }
.sidebar-logo:hover .logo-x::after { opacity: 1; animation: hxoLogoXBar 1.1s ease-in-out 1; }

/* ============================================================
   4. Hoxta theme base (.hxo-themed)
   ============================================================ */
body.hxo-themed {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background: var(--hx-bg) !important;
    color: var(--hx-text) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 195, 255, 0.5) rgba(255, 255, 255, 0.06);
    /* Aliasuri folosite de paginile migrate din Hoxta vechi */
    --text: var(--hx-text);
    --text-muted: var(--hx-text-muted);
    --primary: var(--hx-primary);
    --border: var(--hx-border);
}

body.hxo-themed * { box-sizing: border-box; }

/* Scrollbar global — subțire, cyan Hoxta, fără săgeți (Chrome / Edge / Firefox) */
html:has(body.hxo-themed) {
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 195, 255, 0.5) rgba(255, 255, 255, 0.06);
}

html:has(body.hxo-themed)::-webkit-scrollbar,
body.hxo-themed::-webkit-scrollbar,
body.hxo-themed *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html:has(body.hxo-themed)::-webkit-scrollbar-button,
body.hxo-themed::-webkit-scrollbar-button,
body.hxo-themed *::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

html:has(body.hxo-themed)::-webkit-scrollbar-track,
body.hxo-themed::-webkit-scrollbar-track,
body.hxo-themed *::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
}

html:has(body.hxo-themed)::-webkit-scrollbar-thumb,
body.hxo-themed::-webkit-scrollbar-thumb,
body.hxo-themed *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.55) 0%, rgba(14, 165, 233, 0.7) 100%);
    border-radius: 99px;
    border: 2px solid var(--hx-bg, #0a1222);
    min-height: 40px;
}

html:has(body.hxo-themed)::-webkit-scrollbar-thumb:hover,
body.hxo-themed::-webkit-scrollbar-thumb:hover,
body.hxo-themed *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
}

html:has(body.hxo-themed)::-webkit-scrollbar-corner,
body.hxo-themed::-webkit-scrollbar-corner,
body.hxo-themed *::-webkit-scrollbar-corner {
    background: transparent;
}

body.hxo-themed a:not(.hxo-vt-btn-close):not(.hxo-vt-btn-reply):not(.st2-btn-back):not(.st2-btn-submit):not(.hxo-ticket-confirm-btn):not(.btn-send):not(.btn-new-ticket):not(.back-btn) {
    color: var(--hx-primary);
    text-decoration: none !important;
}
body.hxo-themed a:not(.hxo-vt-btn-close):not(.hxo-vt-btn-reply):not(.st2-btn-back):not(.st2-btn-submit):not(.hxo-ticket-confirm-btn):not(.btn-send):not(.btn-new-ticket):not(.back-btn):hover {
    color: var(--hx-primary-hover);
}

/* ----- Global buttons: primary + secondary/cancel (override Nexus theme.css) ----- */
body.hxo-themed .btn-primary,
body.hxo-themed .btn.btn-primary,
body.hxo-themed button.btn-primary,
body.hxo-themed a.btn-primary,
body.hxo-themed input[type="submit"].btn-primary {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
}

body.hxo-themed .btn-primary:hover,
body.hxo-themed .btn-primary:focus,
body.hxo-themed .btn.btn-primary:hover,
body.hxo-themed .btn.btn-primary:focus,
body.hxo-themed button.btn-primary:hover,
body.hxo-themed a.btn-primary:hover,
body.hxo-themed input[type="submit"].btn-primary:hover {
    background: linear-gradient(180deg, #22b8f5 0%, #14a8e5 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25) !important;
}

body.hxo-themed a.btn-primary,
body.hxo-themed a.btn-primary:hover,
body.hxo-themed a.btn-primary:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

body.hxo-themed .btn-default,
body.hxo-themed .btn.btn-default,
body.hxo-themed button.btn-default,
body.hxo-themed a.btn-default,
body.hxo-themed input.btn-default[type="reset"],
body.hxo-themed input.btn-default[type="button"],
body.hxo-themed .btn-secondary,
body.hxo-themed .btn.btn-secondary,
body.hxo-themed button.btn-secondary,
body.hxo-themed a.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #c5d4e3 !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    padding: 10px 22px !important;
    box-shadow: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

body.hxo-themed .btn-default:hover,
body.hxo-themed .btn.btn-default:hover,
body.hxo-themed button.btn-default:hover,
body.hxo-themed a.btn-default:hover,
body.hxo-themed input.btn-default[type="reset"]:hover,
body.hxo-themed .btn-secondary:hover,
body.hxo-themed .btn.btn-secondary:hover,
body.hxo-themed a.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #e8eef5 !important;
}

body.hxo-themed .btn-default:focus,
body.hxo-themed .btn-default:active,
body.hxo-themed .btn.btn-default:focus,
body.hxo-themed .btn.btn-default:active,
body.hxo-themed .btn-secondary:focus,
body.hxo-themed .btn-secondary:active {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #e8eef5 !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.1) !important;
}

body.hxo-themed a.btn-default,
body.hxo-themed a.btn-default:link,
body.hxo-themed a.btn-default:visited,
body.hxo-themed a.btn-secondary,
body.hxo-themed a.btn-secondary:link,
body.hxo-themed a.btn-secondary:visited {
    color: #c5d4e3 !important;
    text-decoration: none !important;
}

body.hxo-themed a.btn-default:hover,
body.hxo-themed a.btn-secondary:hover {
    color: #e8eef5 !important;
}

body.hxo-themed .btn-default.btn-sm,
body.hxo-themed .btn-secondary.btn-sm {
    padding: 8px 16px !important;
    font-size: 0.875rem !important;
}

body.hxo-themed .btn-default.disabled,
body.hxo-themed .btn-default:disabled,
body.hxo-themed .btn-secondary.disabled,
body.hxo-themed .btn-secondary:disabled {
    opacity: 0.55;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #8fa9c4 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Outline actions (DNS, domain details) â€” class fÄrÄ prefix Bootstrap */
body.hxo-themed .btn-outline,
body.hxo-themed button.btn-outline,
body.hxo-themed a.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 10px 18px;
    background: transparent !important;
    color: #c5d4e3 !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.hxo-themed .btn-outline:hover,
body.hxo-themed button.btn-outline:hover,
body.hxo-themed a.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #e8eef5 !important;
}

/* ----- Global native <select> â€” acelaČ™i limbaj ca register (formulare, DataTables, checkout) -----
   Excluderi: multi-select, bootstrap-select ascuns, Č›Äri/judeČ›e native ascunse Ă®n UI custom. */
body.hxo-themed select:not([multiple]):not(.hxo-no-theme-select):not(.hxo-country-select__native):not(.hxo-state-select__native):not(.bs-select-hidden):not(.hxo-dt-length__native) {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 0 2.5rem 0 14px !important;
    background-color: var(--hx-bg-input-strong) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.75rem !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.hxo-themed select:not([multiple]):not(.hxo-no-theme-select):not(.hxo-country-select__native):not(.hxo-state-select__native):not(.bs-select-hidden):not(.hxo-dt-length__native):hover {
    border-color: rgba(25, 195, 255, 0.35) !important;
    background-color: rgba(20, 35, 60, 0.95) !important;
}

body.hxo-themed select:not([multiple]):not(.hxo-no-theme-select):not(.hxo-country-select__native):not(.hxo-state-select__native):not(.bs-select-hidden):not(.hxo-dt-length__native):focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
    background-color: rgba(20, 35, 60, 0.95) !important;
}

body.hxo-themed select:not([multiple]):not(.hxo-no-theme-select):not(.hxo-country-select__native):not(.hxo-state-select__native):not(.bs-select-hidden):not(.hxo-dt-length__native):disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

body.hxo-themed select:not([multiple]):not(.hxo-no-theme-select):not(.hxo-country-select__native):not(.hxo-state-select__native):not(.hxo-dt-length__native) option {
    background: #060d1e !important;
    color: var(--hx-text) !important;
}

/* ----- DataTables â€žShow entriesâ€ť â€” listÄ custom (ca dropdown Č›arÄ / captura 2), nu <select> nativ deschis ----- */
body.hxo-themed .hxo-dt-length {
    position: relative;
    z-index: 2;
}

body.hxo-themed .hxo-dt-length.is-open {
    z-index: 120;
}

body.hxo-themed .hxo-dt-length__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.hxo-themed .hxo-dt-length__label {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hx-text-soft);
}

body.hxo-themed .hxo-dt-length__control {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

body.hxo-themed .hxo-dt-length__trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 4.5rem;
    min-height: 46px;
    padding: 0 2.5rem 0 14px !important;
    margin: 0 !important;
    background: var(--hx-bg-input-strong) !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.hxo-themed .hxo-dt-length__trigger::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.22s ease;
    pointer-events: none;
}

body.hxo-themed .hxo-dt-length.is-open .hxo-dt-length__trigger::after {
    transform: rotate(180deg);
}

body.hxo-themed .hxo-dt-length__trigger:hover {
    border-color: rgba(25, 195, 255, 0.35) !important;
}

body.hxo-themed .hxo-dt-length__trigger:focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

body.hxo-themed .hxo-dt-length.is-open .hxo-dt-length__trigger {
    border-color: rgba(25, 195, 255, 0.5) !important;
}

body.hxo-themed .hxo-dt-length__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 8px;
    min-width: 100%;
    padding: 8px 10px 10px;
    background: rgba(5, 10, 20, 0.98);
    border: 1px solid rgba(25, 195, 255, 0.38);
    border-radius: 11px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

body.hxo-themed .hxo-dt-length__list {
    list-style: none;
    margin: 0;
    padding: 4px 2px 2px;
    max-height: min(52vh, 280px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 195, 255, 0.75) rgba(255, 255, 255, 0.04);
}

body.hxo-themed .hxo-dt-length__list::-webkit-scrollbar {
    width: 4px;
}

body.hxo-themed .hxo-dt-length__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 8px 0;
}

body.hxo-themed .hxo-dt-length__list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
    border-radius: 99px;
    border: 2px solid rgba(12, 22, 38, 0.98);
}

body.hxo-themed .hxo-dt-length__item {
    padding: 10px 12px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--hx-text);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease, color 0.15s ease;
}

body.hxo-themed .hxo-dt-length__item:last-child {
    border-bottom: none;
}

body.hxo-themed .hxo-dt-length__item:hover {
    background: rgba(25, 195, 255, 0.1);
}

body.hxo-themed .hxo-dt-length__item.is-active {
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.42) 0%, rgba(14, 165, 233, 0.28) 100%);
    color: #fff;
    font-weight: 600;
}

/* Hide default WHMCS chrome when Hoxta shell or landing is active */
body.hxo-shell .header-lined,
body.hxo-shell .navbar,
body.hxo-shell .main-navbar-wrapper,
body.hxo-shell .master-breadcrumb,
body.hxo-shell #header.header > .topbar,
body.hxo-shell #header.header > .navbar,
body.hxo-shell .topbar {
    display: none !important;
}

/* ============================================================
   5. Logged-in shell â€” sidebar + topbar + content
   ============================================================ */
.hoxta-app {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--hx-bg);
}

/* Order / checkout — înălțime naturală (conținutul împinge footer-ul) */
body.hxo-order-flow .hoxta-app,
body.hxo-guest-order .hoxta-app {
    align-items: flex-start;
}

.hoxta-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 256px;
    height: 100vh;
    background: var(--hx-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--hx-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-header {
    padding: 0.65rem 1rem;
    min-height: 68px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--hx-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.sidebar-nav { flex: 1; padding: 1rem; overflow-y: auto; }
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-nav li { margin-bottom: 4px; }

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--hx-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.sidebar-nav a:hover {
    color: var(--hx-text);
    background: var(--hx-bg-muted);
}

.sidebar-nav li.active a {
    color: var(--hx-primary);
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.2);
}

.sidebar-nav a i { width: 18px; text-align: center; }

.sidebar-user { padding: 1rem; border-top: 1px solid var(--hx-border); }

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--hx-bg-muted);
    border-radius: 8px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(25, 195, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-primary);
}

.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 0.875rem; font-weight: 600; color: var(--hx-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-email { font-size: 0.75rem; color: var(--hx-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--hx-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none !important;
}

.logout-btn:hover { color: var(--hx-danger); background: rgba(239, 68, 68, 0.1); }

.hoxta-main {
    flex: 1 1 auto;
    margin-left: 256px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--hx-bg);
}

.hoxta-topbar {
    position: sticky;
    top: 0;
    min-height: 68px;
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.98) 0%, rgba(10, 18, 34, 0.96) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0.65rem 1.5rem;
    /* Below .hoxta-sidebar (100); mobile overlay starts at top: 68px so bar stays clickable */
    z-index: 80;
}

.topbar-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; flex-wrap: nowrap; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--hx-text-muted); font-size: 1.25rem; cursor: pointer; padding: 8px; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    padding: 0.3rem 0.45rem 0.3rem 0.75rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(30, 45, 71, 0.8);
    background: linear-gradient(180deg, rgba(10, 18, 34, 0.65) 0%, rgba(7, 14, 28, 0.75) 100%);
    border-radius: 12px;
}

.topbar-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 18, 34, 0.75);
    border: 1px solid rgba(30, 45, 71, 0.95);
    border-radius: 10px;
    color: #a8bdd4;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.topbar-btn i { font-size: 1rem; }

/* Cart = accent cyan; bell = light (match legacy topbar) */
.hoxta-topbar .topbar-right > .cart-wrapper > .topbar-btn i {
    color: var(--hx-primary);
}
.hoxta-topbar .topbar-right > .notifications-wrapper > .topbar-btn i {
    color: #e8eef5;
}

.topbar-btn:hover {
    color: var(--hx-primary);
    background: rgba(25, 195, 255, 0.08);
    border-color: rgba(25, 195, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(25, 195, 255, 0.12);
}

.notification-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 11px;
    height: 11px;
    background: #22d3ee;
    border: 2px solid rgba(8, 14, 26, 0.95);
    border-radius: 50%;
    display: inline-block;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.35);
}

.notification-count-badge,
.cart-dot {
    top: -6px;
    right: -7px;
    min-width: 18px;
    width: auto;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #22d3ee 0%, #0ea5e9 100%);
    color: #fff;
    border: 1px solid rgba(8, 14, 26, 0.95);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    z-index: 3;
}

.hoxta-content {
    flex: 0 0 auto;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background: transparent;
}

/* Guest checkout / cart — full width, no sidebar */
body.hxo-guest-order .hoxta-main {
    margin-left: 0;
    width: 100%;
}

body.hxo-guest-order .hxo-guest-order-topbar .topbar-left {
    display: flex;
    align-items: center;
}

body.hxo-guest-order .hxo-guest-order-topbar .sidebar-logo {
    text-decoration: none !important;
    font-size: 1.35rem;
}

body.hxo-guest-order .hxo-guest-topbar-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    color: var(--hx-text-muted) !important;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: 0.2s;
}

body.hxo-guest-order .hxo-guest-topbar-link:hover {
    color: var(--hx-text) !important;
    background: var(--hx-bg-muted);
}

body.hxo-guest-order .hxo-guest-topbar-link--primary {
    color: #041018 !important;
    background: var(--hx-primary);
    border-color: rgba(25, 195, 255, 0.35);
}

body.hxo-guest-order .hxo-guest-topbar-link--primary:hover {
    color: #041018 !important;
    filter: brightness(1.06);
}

body.hxo-guest-order .topbar-right {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

/* Fundal continuu */
body.hxo-shell,
body.hxo-guest-order {
    background: var(--hx-bg) !important;
}

/* Shell — footer în .hoxta-main (aceeași coloană ca dashboard + order) */
body.hxo-shell .hoxta-app,
body.hxo-guest-order .hoxta-app,
body.hxo-guest-order .hxo-guest-order-app {
    align-items: stretch;
    min-height: 100vh;
    min-height: 100dvh;
}

body.hxo-shell .hoxta-main,
body.hxo-guest-order .hoxta-main {
    flex: 1 1 auto;
    min-height: 100vh;
    min-height: 100dvh;
}

body.hxo-shell .hoxta-content,
body.hxo-guest-order .hoxta-content {
    flex: 1 0 auto;
}

body.hxo-guest-order .hxo-guest-order-app {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--hx-bg);
}

body.hxo-guest-order #main-body,
body.hxo-shell #main-body,
body.hxo-guest-order section#main-body,
body.hxo-shell section#main-body {
    min-height: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

body.hxo-shell #main-body > .container,
body.hxo-shell #main-body > .container-fluid,
body.hxo-guest-order #main-body > .container,
body.hxo-guest-order #main-body > .container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    min-height: 0 !important;
}

body.hxo-shell #main-body > .container > .row,
body.hxo-guest-order #main-body > .container > .row {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

body.hxo-shell .primary-content,
body.hxo-guest-order .primary-content,
body.hxo-shell #main-content,
body.hxo-guest-order #main-content,
body.hxo-shell .main-content,
body.hxo-guest-order .main-content {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== Footer Hoxta — un singur markup + același stil peste tot ===== */
#footer.footer,
#footer.footer.hxo-site-footer,
footer.footer.hxo-site-footer {
    position: relative !important;
    flex-shrink: 0;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
    background: var(--hx-bg) !important;
    background-color: var(--hx-bg) !important;
    border-top: 1px solid var(--hx-border) !important;
    color: var(--hx-text-muted) !important;
    padding: 1rem 1.5rem 1.15rem !important;
    font-size: 0.875rem !important;
    line-height: 1.55;
    text-align: center;
}

/* Shell: lipit jos în coloana principală (dashboard, order, tickets, domenii) */
.hoxta-main > #footer.footer,
.hoxta-main > #footer.footer.hxo-site-footer {
    margin-top: auto !important;
}

#footer.footer > .container {
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
    margin: 0 auto !important;
}

#footer.footer .nav,
#footer.footer .list-inline,
#footer.footer .float-lg-right,
#footer.footer .nav-link,
#footer.footer .btn,
#footer.footer .notices {
    display: none !important;
}

#footer.footer .copyright,
#footer.footer .copyright.mb-0 {
    display: block;
    margin: 0 !important;
    padding: 0.15rem 0 0 !important;
    text-align: center !important;
    color: var(--hx-text-muted) !important;
    font-size: 0.875rem !important;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

/* Pagini guest fără shell — același footer, jos la viewport */
body.hxo-themed:not(.hxo-shell):not(.hxo-guest-order):not(.page-login):not(.page-register):not(.page-clientregister) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

body.hxo-themed:not(.hxo-shell):not(.hxo-guest-order):not(.page-login):not(.page-register):not(.page-clientregister) > #footer.footer {
    margin-top: auto !important;
}

/* Order / domain — flux natural; fără one-page; conținutul împinge footer-ul */
body.hxo-order-flow .hoxta-content,
body.hxo-guest-order .hoxta-content {
    overflow: visible !important;
}

body.hxo-order-flow #order-standard_cart,
body.hxo-guest-order #order-standard_cart {
    background: transparent !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
}

body.hxo-order-flow #order-standard_cart .hxo-order-wrap,
body.hxo-guest-order #order-standard_cart .hxo-order-wrap {
    padding-bottom: 1.25rem !important;
}

/* Domain register (cart) — promo ascuns când sunt rezultate */
body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-register-wrap.hxo-dom-wrap {
    padding-bottom: 1rem !important;
}

body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-results-card.hxo-results-visible {
    overflow: visible !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1.25rem !important;
}

body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-results-card.hxo-results-visible #DomainSearchResults,
body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-results-card.hxo-results-visible .suggested-domains,
body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-results-card.hxo-results-visible #domainSuggestions {
    overflow: visible !important;
}

body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-results-card.hxo-results-visible .domain-suggestions-warning {
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-register-wrap:has(.hxo-domain-results-card.hxo-results-visible) .hxo-domain-promo-row {
    display: none !important;
}

body.hxo-order-flow #order-standard_cart.hxo-domain-register-page .hxo-domain-promo-row {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

body.hxo-shell.page-viewticket .hoxta-content,
body.hxo-shell.page-submitticket .hoxta-content {
    overflow: visible !important;
}

body.hxo-shell.page-viewticket .hxo-view-ticket-page.view-ticket-page {
    padding-bottom: 2.5rem;
}

body.hxo-shell .hxo-view-ticket-page .reply-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0.25rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    /* Leave the top bar uncovered so cart / bell stay usable while the drawer is open */
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 90;
}
.sidebar-overlay.active { display: block; }

/* ----- Hoxta shell: cart + notifications dropdowns (ported from legacy hoxta-standalone) ----- */
body.hxo-shell .topbar-right .cart-wrapper,
body.hxo-shell .topbar-right .notifications-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

body.hxo-shell .notifications-dropdown,
body.hxo-shell .cart-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    right: 0;
    width: min(340px, 92vw);
    max-height: 400px;
    background: rgba(8, 14, 26, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(30, 45, 71, 0.9);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 8500;
}

body.hxo-shell .notifications-dropdown.active,
body.hxo-shell .cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.hxo-shell .notifications-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--hx-border);
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.06) 0%, rgba(25, 195, 255, 0.02) 100%);
}

body.hxo-shell .notifications-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hx-text);
}

body.hxo-shell .notifications-body {
    max-height: 300px;
    overflow-y: auto;
}

body.hxo-shell .notifications-body::-webkit-scrollbar { width: 6px; }
body.hxo-shell .notifications-body::-webkit-scrollbar-track { background: transparent; }
body.hxo-shell .notifications-body::-webkit-scrollbar-thumb {
    background: var(--hx-border);
    border-radius: 3px;
}

body.hxo-shell .notification-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(30, 45, 71, 0.35);
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--hx-text-muted) !important;
}

body.hxo-shell .notification-item:last-child { border-bottom: none; }

body.hxo-shell .notification-item:hover {
    background: rgba(25, 195, 255, 0.05);
    color: var(--hx-text) !important;
}

body.hxo-shell .notification-item.hxo-notification-hidden {
    display: none !important;
}

body.hxo-shell .notification-item--persistent {
    cursor: pointer;
}

body.hxo-shell .notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.125rem;
}

body.hxo-shell .notification-icon.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

body.hxo-shell .notification-icon.warning {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

body.hxo-shell .notification-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

body.hxo-shell .notification-icon.info {
    background: rgba(25, 195, 255, 0.15);
    color: var(--hx-primary);
}

body.hxo-shell .notification-icon.primary {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

body.hxo-shell .notification-content {
    flex: 1;
    min-width: 0;
}

body.hxo-shell .notification-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-text);
    margin-bottom: 0.25rem;
}

body.hxo-shell .notification-desc {
    font-size: 0.8125rem;
    color: var(--hx-text-muted);
    line-height: 1.45;
}

body.hxo-shell .notification-desc strong {
    color: var(--hx-text);
    font-weight: 600;
}

body.hxo-shell .notification-desc a {
    color: var(--hx-primary);
}

body.hxo-shell .notification-empty {
    padding: 2.25rem 1.25rem;
    text-align: center;
}

body.hxo-shell .notification-empty i {
    font-size: 2.5rem;
    color: var(--hx-text-muted);
    margin-bottom: 1rem;
    opacity: 0.35;
}

body.hxo-shell .notification-empty p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--hx-text-muted);
}

body.hxo-shell .notifications-footer {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--hx-border);
    text-align: center;
}

body.hxo-shell .notifications-footer a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-primary);
    text-decoration: none !important;
    transition: color 0.2s;
}

body.hxo-shell .notifications-footer a:hover {
    color: var(--hx-primary-hover);
}

body.hxo-shell .cart-dropdown-body {
    padding: 1rem 1.25rem;
}

body.hxo-shell .cart-dropdown-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

body.hxo-shell .cart-dropdown-footer .cart-dropdown-link {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}

body.hxo-shell .cart-dropdown-footer .cart-dropdown-link:first-child {
    color: var(--hx-primary);
    border: 1px solid rgba(25, 195, 255, 0.3);
    background: rgba(25, 195, 255, 0.04);
}

body.hxo-shell .cart-dropdown-footer .cart-dropdown-link:first-child:hover {
    background: rgba(25, 195, 255, 0.1);
}

body.hxo-shell .cart-dropdown-footer .cart-dropdown-checkout {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.32);
}

body.hxo-shell .cart-dropdown-footer .cart-dropdown-checkout:hover {
    filter: brightness(1.06);
    color: #fff !important;
}

/* ============================================================
   6. Glass card & shared components
   ============================================================ */
.glass-card {
    background: var(--hx-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--hx-border);
    border-radius: 12px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hx-text);
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--hx-border);
}

/* Dashboard glass cards â€” header + full-width separator under title row */
.glass-card > .card-header {
    position: relative;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--hx-border);
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.05) 0%, rgba(10, 18, 34, 0.2) 100%);
}

/* Dashboard card titles + â€śView allâ€ť â€” match reference (bold white titles, cyan links) */
body.hxo-shell .glass-card > .card-header .card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

body.hxo-shell .glass-card > .card-header .hxo-card-viewall {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-primary) !important;
    text-decoration: none !important;
    white-space: nowrap;
    margin-left: 0.75rem;
}

body.hxo-shell .glass-card > .card-header .hxo-card-viewall:hover {
    color: var(--hx-primary-hover) !important;
}

body.hxo-shell .glass-card .hxo-empty-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-primary) !important;
    text-decoration: none !important;
}

body.hxo-shell .glass-card .hxo-empty-cta:hover {
    color: var(--hx-primary-hover) !important;
}

.card-title { font-size: 1rem; font-weight: 600; color: var(--hx-text); margin: 0; }
.card-body { padding: 1.25rem; }

/* ============================================================
   7. Homepage hero (guest landing)
   ============================================================ */
body.page-homepage:not(.is-logged-in) #header.header,
body.page-homepage:not(.is-logged-in) .master-breadcrumb,
body.page-homepage:not(.is-logged-in) .topbar,
body.page-homepage:not(.is-logged-in) .navbar {
    display: none !important;
}

body.page-homepage:not(.is-logged-in) #main-body {
    padding: 0 !important;
    background: transparent !important;
}

body.page-homepage:not(.is-logged-in) #main-body > .container {
    max-width: 100% !important;
    padding: 0 !important;
}

body.page-homepage:not(.is-logged-in) .primary-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 100;
    background: rgba(10, 18, 32, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hx-border);
}

.hero-actions { display: flex; gap: 0.75rem; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 1.4;
    border: 1px solid transparent;
}

.btn-hero-outline {
    background: transparent;
    color: var(--hx-text) !important;
    border-color: var(--hx-border);
}

.btn-hero-outline:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hx-primary) !important;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(25, 195, 255, 0.4);
    font-weight: 700;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 195, 255, 0.55);
    color: #ffffff !important;
    background: linear-gradient(135deg, #2dd4ff 0%, #19c3ff 100%);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(25, 195, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    color: var(--hx-text);
}

.hero h1 span { color: var(--hx-primary); }

.hero p {
    font-size: 1.125rem;
    color: var(--hx-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .hero-nav .sidebar-logo { font-size: 1.65rem; }
    .hero-nav { padding: 0.85rem 1.25rem; }
    .btn-hero { padding: 10px 18px; font-size: 0.85rem; }
}

/* ============================================================
   8. Login (split layout)
   ============================================================ */
body.page-login,
body.page-login.hxo-themed {
    background: var(--hx-bg-deep) !important;
    background-color: var(--hx-bg-deep) !important;
}

/* O singurÄ â€žpaginÄâ€ť fÄrÄ scroll â€” Ă®nÄlČ›ime viewport, fÄrÄ overflow de la 100vh + padding / row gutters */
html:has(body.page-login) {
    height: 100%;
    overflow: hidden;
}

body.page-login {
    margin: 0 !important;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
}

body.page-login section#main-body,
body.page-login #main-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

body.page-login #main-body > .container {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.page-login #main-body > .container > .row {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    overflow: hidden;
}

body.page-login #header.header,
body.page-login .master-breadcrumb,
body.page-login .topbar,
body.page-login .navbar,
body.page-login #footer.footer {
    display: none !important;
}

body.page-login #main-body { padding: 0 !important; background: transparent !important; }
body.page-login .primary-content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.login-page {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: min(1180px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: stretch;
}

.login-branding {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3rem 3rem 1.5rem;
    overflow: hidden;
    min-height: 0;
}

.login-branding::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(25, 195, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
}

.branding-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 195, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 195, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.branding-content { position: relative; z-index: 1; }

.login-branding .sidebar-logo { margin-bottom: 2.5rem; }

.brand-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hx-text);
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.brand-tagline em { font-style: normal; color: var(--hx-primary); }

.brand-desc {
    font-size: 1rem;
    color: var(--hx-text-muted);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 3rem;
}

.brand-features { display: flex; flex-direction: column; gap: 1rem; }

.brand-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--hx-text-muted);
}

.brand-feature i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 195, 255, 0.12);
    border-radius: 8px;
    color: var(--hx-primary);
    flex-shrink: 0;
}

.login-form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--hx-bg-card-solid);
    border-left: 1px solid var(--hx-border-soft);
    position: relative;
    min-height: 0;
}

.login-form-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hx-primary), var(--hx-primary-dark));
}

.form-header { margin-bottom: 2rem; }
.form-header h1 { font-size: 1.75rem; font-weight: 700; color: var(--hx-text); letter-spacing: -0.02em; margin: 0 0 0.4rem; }
.form-header p { font-size: 0.9rem; color: var(--hx-text-muted); margin: 0; }

.login-form-side .alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.login-form-side .alert-error,
.login-form-side .alert-danger { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.25); color: #fca5a5; }
.login-form-side .alert-success { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.25); color: #86efac; }
.login-form-side .alert-info { background: rgba(25, 195, 255, 0.1); border: 1px solid rgba(25, 195, 255, 0.2); color: var(--hx-primary); }

.login-form-side .form-group { margin-bottom: 1.25rem; }
.login-form-side .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hx-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.login-form-side .input-wrapper { position: relative; }

.login-form-side .input-wrapper .icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hx-text-muted);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1;
    width: 22px;
    text-align: center;
}

.login-form-side .input-wrapper input {
    width: 100%;
    padding: 13px 3.5rem 13px 3.25rem !important;
    background: var(--hx-bg-input) !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 10px !important;
    color: var(--hx-text) !important;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s;
    outline: none;
    position: relative;
    z-index: 2;
}

.login-form-side .input-wrapper input:focus {
    border-color: rgba(25, 195, 255, 0.5) !important;
    background: rgba(25, 195, 255, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.1) !important;
}

.login-form-side .input-wrapper input::placeholder { color: rgba(122, 139, 163, 0.6); }

/* Login: autofill (Chrome) â€” acelaČ™i truc ca la Ă®nregistrare */
body.page-login .login-form-side .input-wrapper input:-webkit-autofill,
body.page-login .login-form-side .input-wrapper input:-webkit-autofill:hover,
body.page-login .login-form-side .input-wrapper input:-webkit-autofill:focus,
body.page-login .login-form-side .input-wrapper input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--hx-text) !important;
    caret-color: var(--hx-text);
    -webkit-box-shadow: 0 0 0 1000px var(--hx-bg-input) inset !important;
    box-shadow: 0 0 0 1000px var(--hx-bg-input) inset !important;
    border: 1px solid var(--hx-border-input) !important;
    filter: none !important;
    transition: background-color 99999s ease-out 0s;
}

body.page-login .login-form-side .input-wrapper input:-webkit-autofill:focus {
    border-color: rgba(25, 195, 255, 0.5) !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(20, 35, 60, 0.95) inset, 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
    box-shadow: 0 0 0 1000px rgba(20, 35, 60, 0.95) inset, 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

.login-form-side .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--hx-text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 0.875rem;
    transition: color 0.2s;
    z-index: 3;
}

.login-form-side .toggle-password:hover { color: var(--hx-primary); }

.remember-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

/* â€žNu mÄ uitaâ€ť â€” bulinÄ circularÄ ca la marketing / captura 2 */
.remember-me input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 2px solid rgba(25, 195, 255, 0.48);
    background: rgba(8, 14, 24, 0.95);
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: none;
    accent-color: transparent;
}

.remember-me input[type="checkbox"]:hover {
    border-color: rgba(25, 195, 255, 0.72);
}

.remember-me input[type="checkbox"]:checked {
    background: rgba(8, 14, 24, 0.95);
    border-color: rgba(25, 195, 255, 0.82);
    box-shadow: none;
}

.remember-me input[type="checkbox"]::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    transform: scale(0);
    transition: transform 0.18s ease;
    pointer-events: none;
}

.remember-me input[type="checkbox"]:checked::after {
    transform: scale(1);
}

.remember-me input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.45);
}

.remember-me span { font-size: 0.875rem; color: var(--hx-text-muted); }
.forgot-link { font-size: 0.875rem; color: var(--hx-primary) !important; }
.forgot-link:hover { color: #2dd4ff !important; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(25, 195, 255, 0.35);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}

.btn-submit > * { position: relative; z-index: 1; }

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 195, 255, 0.5);
    background: linear-gradient(135deg, #2dd4ff 0%, #19c3ff 100%);
    color: #ffffff !important;
}

.btn-submit:active { transform: translateY(0); }

.login-register-cta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hx-border-soft);
    text-align: center;
}

.login-register-lead { font-size: 0.875rem; color: var(--hx-text-muted); margin-bottom: 0.85rem; }

.btn-login-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none !important;
    color: var(--hx-primary) !important;
    background: rgba(25, 195, 255, 0.08);
    border: 1px solid rgba(25, 195, 255, 0.35);
    transition: all 0.2s;
}

.btn-login-register:hover {
    background: rgba(25, 195, 255, 0.14);
    border-color: rgba(25, 195, 255, 0.55);
    color: #5ddbff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(25, 195, 255, 0.15);
}

@media (max-width: 900px) {
    .login-page { grid-template-columns: 1fr; max-width: 100%; }
    .login-branding { display: none; }
    .login-form-side { padding: 2rem 1.25rem; }
}

@media (max-height: 720px) {
    .login-branding { padding: 1.5rem 1.5rem 1.5rem 1rem; }
    .login-form-side { padding: 1.25rem 1rem; }
    .login-branding .sidebar-logo { margin-bottom: 1.25rem; }
    .brand-tagline { font-size: clamp(1.25rem, 3.5vh, 1.65rem); margin-bottom: 0.4rem; }
    .brand-desc { margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.45; }
    .brand-features { gap: 0.45rem; }
    .brand-feature { font-size: 0.82rem; }
    .brand-feature i { width: 28px; height: 28px; font-size: 0.8rem; }
    .form-header { margin-bottom: 1rem; }
    .form-header h1 { font-size: 1.45rem; }
    .login-form-side .form-group { margin-bottom: 0.85rem; }
    .remember-forgot { margin-bottom: 1rem; }
    .login-register-cta { margin-top: 1rem; padding-top: 1rem; }
}

/* ============================================================
   9. Register / Clientregister
   ============================================================ */
html,
body.page-register,
body.page-clientregister,
body.page-register.hxo-themed,
body.page-clientregister.hxo-themed {
    background: var(--hx-bg-deep) !important;
    background-color: var(--hx-bg-deep) !important;
}

body.page-register #main-body,
body.page-clientregister #main-body,
body.page-register section#main-body,
body.page-clientregister section#main-body {
    background: var(--hx-bg-deep) !important;
    background-color: var(--hx-bg-deep) !important;
    padding: 0 !important;
}

body.page-register #main-body > .container,
body.page-clientregister #main-body > .container {
    max-width: 100% !important;
    padding: 0 !important;
}

body.page-register .primary-content,
body.page-clientregister .primary-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

body.page-register #header.header,
body.page-clientregister #header.header,
body.page-register .master-breadcrumb,
body.page-clientregister .master-breadcrumb,
body.page-register .topbar,
body.page-clientregister .topbar,
body.page-register .navbar,
body.page-clientregister .navbar,
body.page-register #footer.footer,
body.page-clientregister #footer.footer {
    display: none !important;
}

body.page-register .w-hidden,
body.page-clientregister .w-hidden,
body.page-register .hidden,
body.page-clientregister .hidden {
    display: none !important;
}

.register-page {
    min-height: 100vh;
    position: relative;
    padding: 2.5rem 1.25rem 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.register-bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(25, 195, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 195, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    z-index: 0;
}

.register-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(25, 195, 255, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(14, 165, 233, 0.06), transparent 45%);
    z-index: 0;
}

.register-container {
    width: 100%;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.register-logo { text-align: center; margin-bottom: 1.75rem; }

.register-card {
    background: rgba(12, 20, 38, 0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--hx-border-soft);
    border-radius: 18px;
    padding: 2rem 2.25rem 2.25rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, var(--hx-primary), var(--hx-primary-dark));
}

.register-header { text-align: center; margin-bottom: 1.75rem; padding-top: 0.25rem; }
.register-header h1 { font-size: 1.625rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 0.45rem; color: var(--hx-text); }
.register-header p { font-size: 0.9375rem; line-height: 1.55; color: var(--hx-text-muted); max-width: 420px; margin: 0 auto; }

/* Map WHMCS Bootstrap card structure to flat sectioned blocks */
.register-card #registration .card {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--hx-section-divider) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.register-card #registration .card:last-of-type,
.register-card #containerNewUserSignup > .card:last-child,
.register-card #containerNewUserSecurity .card:last-child {
    border-bottom: 0 !important;
}

.register-card #registration .card .card-body { padding: 1.5rem 0 1.6rem !important; }

.register-card #registration .card .card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: var(--hx-text) !important;
    margin-bottom: 1.35rem !important;
    text-transform: none !important;
    letter-spacing: -0.01em;
}

.register-card .hxo-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(25, 195, 255, 0.1);
    border: 1px solid rgba(25, 195, 255, 0.16);
    color: var(--hx-primary);
    font-size: 1rem;
}

.register-card .hxo-section-icon i { color: var(--hx-primary); }

.register-card .card-title small,
.register-card .card-title i:not(.fas):not(.far):not(.fal):not(.fad) {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--hx-text-muted);
    font-style: normal;
    margin-left: 0.5rem;
}

.register-card .card-title br { display: none; }

.register-card .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}
.register-card .row > [class*="col-"] { padding-right: 8px; padding-left: 8px; }

@media (min-width: 576px) {
    .register-card #registration .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    .register-card #registration .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .register-card #registration .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .register-card #registration .col-sm-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .register-card #registration .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (max-width: 575px) {
    .register-card #registration .row > [class*="col-"] { flex: 0 0 100%; max-width: 100%; }
}

.register-card #registration .form-group {
    margin-bottom: 1.1rem;
    position: relative;
}

/* Labels above fields â€” legacy Hoxta register (CAPS, fÄrÄ iconiČ›e Ă®n cĂ˘mp) */
.register-card #registration label.hxo-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--hx-text-muted) !important;
    margin-bottom: 0.45rem;
}

.register-card #registration .hxo-reg-marketing-msg {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.register-card #registration .hxo-marketing-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 0.25rem;
    user-select: none;
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 2px solid rgba(25, 195, 255, 0.48);
    background: rgba(8, 14, 24, 0.95);
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: none;
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"]:hover {
    border-color: rgba(25, 195, 255, 0.72);
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"]:checked {
    background: rgba(8, 14, 24, 0.95);
    border-color: rgba(25, 195, 255, 0.82);
    box-shadow: none;
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"]::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    transform: scale(0);
    transition: transform 0.18s ease;
    pointer-events: none;
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"]:checked::after {
    transform: scale(1);
}

.register-card #registration .hxo-marketing-checkbox input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.45);
}

.register-card #registration .hxo-marketing-checkbox__text {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--hx-text-muted);
}

.register-card #registration .hxo-reg-input-wrap {
    position: relative;
    width: 100%;
}

.register-card #registration .form-group.prepend-icon .field-icon,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .field-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-text-muted) !important;
    pointer-events: none;
    z-index: 2;
    font-size: 0.9rem;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    line-height: 1;
}

.register-card #registration .form-group.prepend-icon .field-icon i,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .field-icon i { color: var(--hx-text-muted); }

.register-card #registration .field,
.register-card #registration .form-control,
.register-card #registration input[type="text"],
.register-card #registration input[type="email"],
.register-card #registration input[type="tel"],
.register-card #registration input[type="password"],
.register-card #registration select:not(.hxo-country-select__native):not(.hxo-state-select__native) {
    width: 100% !important;
    padding: 12px 14px !important;
    background: var(--hx-bg-input-strong) !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 46px;
}

.register-card #registration .form-group.prepend-icon .field,
.register-card #registration .form-group.prepend-icon .form-control,
.register-card #registration .form-group.prepend-icon input,
.register-card #registration .form-group.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native),
.register-card #registration .hxo-reg-input-wrap.prepend-icon .field,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .form-control,
.register-card #registration .hxo-reg-input-wrap.prepend-icon input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native),
.register-card #registration .hxo-reg-input-wrap.prepend-icon .hxo-country-select__trigger,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .hxo-state-select__trigger {
    padding-left: 44px !important;
}

.register-card #registration .field:focus,
.register-card #registration .form-control:focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
    background: rgba(20, 35, 60, 0.95) !important;
}

.register-card #registration .field::placeholder,
.register-card #registration .form-control::placeholder { color: rgba(139, 156, 181, 0.55) !important; }

/* Chrome autofill â€” altfel email/parolÄ primesc fundal deschis cĂ˘nd browserul completeazÄ */
.register-card #registration input.field:-webkit-autofill,
.register-card #registration input.form-control:-webkit-autofill,
.register-card #registration input[type="email"]:-webkit-autofill,
.register-card #registration input[type="password"]:-webkit-autofill,
.register-card #registration input[type="text"]:-webkit-autofill,
.register-card #registration input[type="tel"]:-webkit-autofill,
.register-card #registration textarea:-webkit-autofill,
.register-card #registration select:-webkit-autofill {
    -webkit-text-fill-color: var(--hx-text) !important;
    caret-color: var(--hx-text);
    -webkit-box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    border: 1px solid var(--hx-border-input) !important;
    filter: none !important;
    transition: background-color 99999s ease-out 0s;
}

.register-card #registration input.field:-webkit-autofill:hover,
.register-card #registration input.form-control:-webkit-autofill:hover,
.register-card #registration input[type="email"]:-webkit-autofill:hover,
.register-card #registration input[type="password"]:-webkit-autofill:hover,
.register-card #registration input[type="text"]:-webkit-autofill:hover,
.register-card #registration input[type="tel"]:-webkit-autofill:hover,
.register-card #registration textarea:-webkit-autofill:hover,
.register-card #registration select:-webkit-autofill:hover,
.register-card #registration input.field:-webkit-autofill:focus,
.register-card #registration input.form-control:-webkit-autofill:focus,
.register-card #registration input[type="email"]:-webkit-autofill:focus,
.register-card #registration input[type="password"]:-webkit-autofill:focus,
.register-card #registration input[type="text"]:-webkit-autofill:focus,
.register-card #registration input[type="tel"]:-webkit-autofill:focus,
.register-card #registration textarea:-webkit-autofill:focus,
.register-card #registration select:-webkit-autofill:focus,
.register-card #registration input.field:-webkit-autofill:active,
.register-card #registration input.form-control:-webkit-autofill:active,
.register-card #registration input[type="email"]:-webkit-autofill:active,
.register-card #registration input[type="password"]:-webkit-autofill:active,
.register-card #registration input[type="text"]:-webkit-autofill:active,
.register-card #registration input[type="tel"]:-webkit-autofill:active {
    -webkit-text-fill-color: var(--hx-text) !important;
    caret-color: var(--hx-text);
    -webkit-box-shadow: 0 0 0 1000px rgba(20, 35, 60, 0.95) inset !important;
    box-shadow: 0 0 0 1000px rgba(20, 35, 60, 0.95) inset !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    filter: none !important;
}

.register-card #registration .intl-tel-input input:-webkit-autofill,
.register-card #registration .intl-tel-input input[type="tel"]:-webkit-autofill,
.register-card #registration .intl-tel-input input[type="text"]:-webkit-autofill {
    -webkit-text-fill-color: var(--hx-text) !important;
    caret-color: var(--hx-text);
    -webkit-box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    filter: none !important;
    transition: background-color 99999s ease-out 0s;
}

/* intl-tel-input: regulile .field cu padding uniform suprascriu padding-left pentru prefix â€” aliniat cu Nexus all.css */
.register-card #registration .intl-tel-input {
    width: 100%;
    display: block;
}

.register-card #registration .intl-tel-input input,
.register-card #registration .intl-tel-input input[type="tel"],
.register-card #registration .intl-tel-input input[type="text"] {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-right: 36px !important;
    padding-left: 14px !important;
}

.register-card #registration .intl-tel-input.allow-dropdown input,
.register-card #registration .intl-tel-input.allow-dropdown input[type="tel"],
.register-card #registration .intl-tel-input.allow-dropdown input[type="text"],
.register-card #registration .intl-tel-input.separate-dial-code input,
.register-card #registration .intl-tel-input.separate-dial-code input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code input[type="text"] {
    padding-right: 6px !important;
    padding-left: 52px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-2 input,
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-2 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-2 input[type="text"] {
    padding-left: 66px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="text"] {
    padding-left: 76px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-3 input,
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-3 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-3 input[type="text"] {
    padding-left: 74px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="text"] {
    padding-left: 84px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-4 input,
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-4 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-4 input[type="text"] {
    padding-left: 82px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="text"] {
    padding-left: 92px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-5 input,
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-5 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.iti-sdc-5 input[type="text"] {
    padding-left: 90px !important;
}

.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="tel"],
.register-card #registration .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="text"] {
    padding-left: 100px !important;
}

/* intl-tel + iconiČ›Ä Ă®n stĂ˘nga (prepend): +42px la padding-left faČ›Ä de all.css */
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input input[type="text"] {
    padding-left: calc(14px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.allow-dropdown input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.allow-dropdown input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.allow-dropdown input[type="text"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code input[type="text"] {
    padding-left: calc(52px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-2 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-2 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-2 input[type="text"] {
    padding-left: calc(66px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="text"] {
    padding-left: calc(76px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-3 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-3 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-3 input[type="text"] {
    padding-left: calc(74px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="text"] {
    padding-left: calc(84px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-4 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-4 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-4 input[type="text"] {
    padding-left: calc(82px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="text"] {
    padding-left: calc(92px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-5 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-5 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.iti-sdc-5 input[type="text"] {
    padding-left: calc(90px + 42px) !important;
}

.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="tel"],
.register-card #registration .hxo-reg-input-wrap.prepend-icon .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="text"] {
    padding-left: calc(100px + 42px) !important;
}

/* intl-tel-input: dropdown prefix (append la body ca .iti-container) â€” limbaj vizual ca Č›aara / judeČ› */
.intl-tel-input.iti-container {
    z-index: 12050 !important;
    padding: 0 !important;
    margin-top: 8px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-width: min(100vw - 32px, 420px);
}

.intl-tel-input.iti-container .country-list {
    position: relative !important;
    z-index: 1 !important;
    left: auto !important;
    margin: 0 !important;
    background: rgba(5, 10, 20, 0.98) !important;
    border: 1px solid rgba(25, 195, 255, 0.38) !important;
    border-radius: 11px !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55) !important;
    white-space: normal !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: min(52vh, 300px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 6px 8px 8px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(25, 195, 255, 0.75) rgba(255, 255, 255, 0.04) !important;
}

.intl-tel-input.iti-container .country-list::-webkit-scrollbar {
    width: 4px;
}

.intl-tel-input.iti-container .country-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.intl-tel-input.iti-container .country-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 8px 0;
}

.intl-tel-input.iti-container .country-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
    border-radius: 99px;
    border: 2px solid rgba(12, 22, 38, 0.98);
}

.intl-tel-input.iti-container .country-list .country {
    padding: 10px 12px !important;
    color: var(--hx-text) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.intl-tel-input.iti-container .country-list .country:last-child {
    border-bottom: none !important;
}

.intl-tel-input.iti-container .country-list .country .country-name {
    color: var(--hx-text) !important;
}

.intl-tel-input.iti-container .country-list .country .dial-code {
    color: var(--hx-text-soft) !important;
}

.intl-tel-input.iti-container .country-list .country.highlight {
    background: rgba(25, 195, 255, 0.12) !important;
}

.intl-tel-input.iti-container .country-list .divider {
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

/* ListÄ Ă®n flow (fÄrÄ teleport Ă®n body) */
.register-card #registration .intl-tel-input .country-list {
    margin-top: 8px !important;
    margin-left: 0 !important;
    background: rgba(5, 10, 20, 0.98) !important;
    border: 1px solid rgba(25, 195, 255, 0.38) !important;
    border-radius: 11px !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55) !important;
    white-space: normal !important;
    max-height: min(52vh, 300px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 6px 8px 8px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(25, 195, 255, 0.75) rgba(255, 255, 255, 0.04) !important;
}

.register-card #registration .intl-tel-input .country-list::-webkit-scrollbar {
    width: 4px;
}

.register-card #registration .intl-tel-input .country-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.register-card #registration .intl-tel-input .country-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 8px 0;
}

.register-card #registration .intl-tel-input .country-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
    border-radius: 99px;
    border: 2px solid rgba(12, 22, 38, 0.98);
}

.register-card #registration .intl-tel-input .country-list .country {
    color: var(--hx-text) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.register-card #registration .intl-tel-input .country-list .country .country-name {
    color: var(--hx-text) !important;
}

.register-card #registration .intl-tel-input .country-list .country .dial-code {
    color: var(--hx-text-soft) !important;
}

.register-card #registration .intl-tel-input .country-list .country.highlight {
    background: rgba(25, 195, 255, 0.12) !important;
}

.register-card #registration .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag,
.register-card #registration .intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(255, 255, 255, 0.06) !important;
}

.register-card #registration .intl-tel-input .selected-flag .iti-arrow {
    border-top-color: rgba(232, 238, 245, 0.55) !important;
}

.register-card #registration .intl-tel-input .selected-flag .iti-arrow.up {
    border-bottom-color: rgba(232, 238, 245, 0.55) !important;
}

/* Country select â€” consolidated (native selects only; country uses custom UI) */
body.page-register .register-card select:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-register .register-card select.field:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-register .register-card select.form-control:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-clientregister .register-card select:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-clientregister .register-card select.field:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-clientregister .register-card select.form-control:not(.hxo-country-select__native):not(.hxo-state-select__native) {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 2.5rem 0 14px !important;
    background-color: var(--hx-bg-input-strong) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.75rem !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
}

body.page-register .register-card .form-group.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-clientregister .register-card .form-group.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-register .register-card .hxo-reg-input-wrap.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native),
body.page-clientregister .register-card .hxo-reg-input-wrap.prepend-icon select:not(.hxo-country-select__native):not(.hxo-state-select__native) {
    padding-left: 44px !important;
}

body.page-register .register-card select option,
body.page-clientregister .register-card select option {
    background: #060d1e !important;
    color: var(--hx-text) !important;
}

/* Country: custom dropdown (lista nu mai e nativÄ neagrÄ â€” aliniat la tema Hoxta, ca â€žpoza 2â€ť) */
.register-card #registration .hxo-country-select {
    position: relative;
    width: 100%;
    z-index: 4;
}

.register-card #registration .hxo-country-select.is-open {
    z-index: 120;
}

.register-card #registration .hxo-country-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.register-card #registration .hxo-country-select__trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    width: 100% !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 0 2.75rem 0 44px !important;
    margin: 0 !important;
    background: var(--hx-bg-input-strong) !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    line-height: 1.35 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: border-color 0.2s, border-radius 0.2s, box-shadow 0.2s;
}

.register-card #registration .hxo-country-select__value {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.register-card #registration .hxo-country-select__trigger::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.22s ease;
    pointer-events: none;
}

.register-card #registration .hxo-country-select.is-open .hxo-country-select__trigger::after {
    transform: rotate(180deg);
}

.register-card #registration .hxo-country-select__trigger:hover {
    border-color: rgba(25, 195, 255, 0.35) !important;
}

.register-card #registration .hxo-country-select__trigger:focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

.register-card #registration .hxo-country-select.is-open .hxo-country-select__trigger {
    border-radius: 11px !important;
    border-color: rgba(25, 195, 255, 0.5) !important;
}

.register-card #registration .hxo-country-select__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    padding: 8px 10px 10px;
    background: #060d1e;
    background: rgba(5, 10, 20, 0.98);
    border: 1px solid rgba(25, 195, 255, 0.38);
    border-radius: 11px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.register-card #registration .hxo-country-select__list {
    list-style: none;
    margin: 0;
    padding: 4px 2px 2px;
    max-height: min(52vh, 300px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 195, 255, 0.75) rgba(255, 255, 255, 0.04);
}

.register-card #registration .hxo-country-select__list::-webkit-scrollbar {
    width: 4px;
}

.register-card #registration .hxo-country-select__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 8px 0;
}

.register-card #registration .hxo-country-select__list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
    border-radius: 99px;
    border: 2px solid rgba(12, 22, 38, 0.98);
}

.register-card #registration .hxo-country-select__item {
    padding: 10px 12px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--hx-text);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease, color 0.15s ease;
}

.register-card #registration .hxo-country-select__item:last-child {
    border-bottom: none;
}

.register-card #registration .hxo-country-select__item:hover {
    background: rgba(25, 195, 255, 0.1);
}

.register-card #registration .hxo-country-select__item.is-active {
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.42) 0%, rgba(14, 165, 233, 0.28) 100%);
    color: #fff;
    font-weight: 600;
}

/* State / judeČ› â€” acelaČ™i limbaj vizual ca dropdown-ul Č›Ärii (WHMCS insereazÄ #stateselect dinamic) */
.register-card #registration .hxo-state-select {
    position: relative;
    width: 100%;
    z-index: 3;
}

.register-card #registration .hxo-state-select.is-open {
    z-index: 119;
}

.register-card #registration .hxo-state-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.register-card #registration .hxo-state-select__trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    width: 100% !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 0 2.75rem 0 44px !important;
    margin: 0 !important;
    background: var(--hx-bg-input-strong) !important;
    border: 1px solid var(--hx-border-input) !important;
    border-radius: 11px !important;
    color: var(--hx-text) !important;
    font-family: inherit !important;
    font-size: 0.9375rem !important;
    line-height: 1.35 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: border-color 0.2s, border-radius 0.2s, box-shadow 0.2s;
}

.register-card #registration .hxo-state-select__value {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.register-card #registration .hxo-state-select__trigger::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.22s ease;
    pointer-events: none;
}

.register-card #registration .hxo-state-select.is-open .hxo-state-select__trigger::after {
    transform: rotate(180deg);
}

.register-card #registration .hxo-state-select__trigger:hover {
    border-color: rgba(25, 195, 255, 0.35) !important;
}

.register-card #registration .hxo-state-select__trigger:focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

.register-card #registration .hxo-state-select.is-open .hxo-state-select__trigger {
    border-radius: 11px !important;
    border-color: rgba(25, 195, 255, 0.5) !important;
}

.register-card #registration .hxo-state-select__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    padding: 8px 10px 10px;
    background: #060d1e;
    background: rgba(5, 10, 20, 0.98);
    border: 1px solid rgba(25, 195, 255, 0.38);
    border-radius: 11px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.register-card #registration .hxo-state-select__list {
    list-style: none;
    margin: 0;
    padding: 4px 2px 2px;
    max-height: min(52vh, 300px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 195, 255, 0.75) rgba(255, 255, 255, 0.04);
}

.register-card #registration .hxo-state-select__list::-webkit-scrollbar {
    width: 4px;
}

.register-card #registration .hxo-state-select__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 8px 0;
}

.register-card #registration .hxo-state-select__list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #19c3ff 0%, #0ea5e9 100%);
    border-radius: 99px;
    border: 2px solid rgba(12, 22, 38, 0.98);
}

.register-card #registration .hxo-state-select__item {
    padding: 10px 12px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--hx-text);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease, color 0.15s ease;
}

.register-card #registration .hxo-state-select__item:last-child {
    border-bottom: none;
}

.register-card #registration .hxo-state-select__item:hover {
    background: rgba(25, 195, 255, 0.1);
}

.register-card #registration .hxo-state-select__item.is-active {
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.42) 0%, rgba(14, 165, 233, 0.28) 100%);
    color: #fff;
    font-weight: 600;
}

/* Generate password button */
.register-card #registration .btn-default,
.register-card #registration .generate-password {
    padding: 11px 16px !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: var(--hx-text) !important;
    background: rgba(25, 195, 255, 0.1) !important;
    border: 1px solid rgba(25, 195, 255, 0.28) !important;
    border-radius: 10px !important;
    width: 100% !important;
    transition: background 0.2s, border-color 0.2s;
}

.register-card #registration .btn-default:hover,
.register-card #registration .generate-password:hover {
    background: rgba(25, 195, 255, 0.18) !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
}

/* Password strength meter */
.register-card #registration .password-strength-meter { width: 100%; margin-top: 0.4rem; }

.register-card #registration .progress {
    display: flex !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 99px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.register-card #registration .progress-bar {
    height: 100% !important;
    border-radius: 99px !important;
    transition: width 0.25s ease;
    box-shadow: none !important;
    background-image: none !important;
    color: transparent !important;
    line-height: 0 !important;
}

.register-card #registration .progress-bar.bg-success { background-color: #22c55e !important; }
.register-card #registration .progress-bar.bg-warning { background-color: #f59e0b !important; }
.register-card #registration .progress-bar.bg-danger { background-color: #ef4444 !important; }

.register-card #passwordStrengthTextLabel,
.register-card #registration .text-muted { color: var(--hx-text-muted) !important; }

.register-card #passwdFeedback {
    background: rgba(25, 195, 255, 0.08) !important;
    border: 1px solid rgba(25, 195, 255, 0.2) !important;
    color: var(--hx-primary) !important;
    border-radius: 11px !important;
    padding: 0.6rem 1rem !important;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}
.register-card #passwdFeedback.w-hidden,
.register-card #passwdFeedback.hidden { display: none !important; }

/* Mailing list: iOS-style pill (off = gri + bulÄ stĂ˘nga, on = albastru + bulÄ dreapta) */
.hxo-mail-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
    margin-top: 0.35rem;
    vertical-align: middle;
    cursor: pointer;
    flex-shrink: 0;
}

.hxo-mail-toggle-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.hxo-mail-toggle-track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #2f3a4d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    pointer-events: none;
    z-index: 0;
}

.hxo-mail-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease;
    pointer-events: none;
    z-index: 1;
}

.hxo-mail-toggle-input:checked ~ .hxo-mail-toggle-track {
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    border-color: rgba(25, 195, 255, 0.35);
    box-shadow: 0 4px 14px rgba(25, 195, 255, 0.25);
}

.hxo-mail-toggle-input:checked ~ .hxo-mail-toggle-track .hxo-mail-toggle-knob {
    transform: translateX(20px);
}

.hxo-mail-toggle-input:focus-visible ~ .hxo-mail-toggle-track {
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.45);
}

.hxo-mail-toggle-input:checked:focus-visible ~ .hxo-mail-toggle-track {
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.55), 0 4px 14px rgba(25, 195, 255, 0.25);
}

.register-card #registration .card p {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

/* TOS / form-check */
.register-card #registration .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--hx-text-muted);
    font-size: 0.875rem;
}

.register-card #registration .form-check-input {
    accent-color: var(--hx-primary);
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Register button */
.register-card #registration .btn-primary,
.register-card #registration .btn-register {
    width: 100% !important;
    margin-top: 0.5rem !important;
    padding: 14px 18px !important;
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    font-size: 0.96875rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 6px 24px rgba(25, 195, 255, 0.32) !important;
    text-transform: none !important;
}

.register-card #registration .btn-primary:hover,
.register-card #registration .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(25, 195, 255, 0.45) !important;
}

/* Modal â€žGenerare parolÄâ€ť (#modalGeneratePassword â€” include global footer) */
#modalGeneratePassword .modal-dialog {
    max-width: 520px;
}

#modalGeneratePassword .modal-content {
    background: var(--hx-bg-card-solid) !important;
    border: 1px solid rgba(25, 195, 255, 0.22) !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65) !important;
}

#modalGeneratePassword .modal-header {
    background: linear-gradient(135deg, rgba(18, 32, 58, 0.98) 0%, rgba(10, 18, 32, 0.98) 100%) !important;
    border-bottom: 1px solid rgba(25, 195, 255, 0.18) !important;
    color: var(--hx-text) !important;
    padding: 1rem 1.25rem !important;
}

#modalGeneratePassword .modal-header.bg-primary {
    background: linear-gradient(135deg, rgba(18, 32, 58, 0.98) 0%, rgba(10, 18, 32, 0.98) 100%) !important;
}

#modalGeneratePassword .modal-header.text-white,
#modalGeneratePassword .modal-header .modal-title {
    color: var(--hx-text) !important;
}

#modalGeneratePassword .modal-header .modal-title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
}

#modalGeneratePassword .modal-header .close {
    color: rgba(232, 238, 245, 0.8) !important;
    opacity: 1 !important;
    text-shadow: none !important;
    font-weight: 400;
}

#modalGeneratePassword .modal-header .close:hover {
    color: #fff !important;
}

#modalGeneratePassword .modal-body {
    background: rgba(8, 14, 26, 0.96) !important;
    color: var(--hx-text) !important;
    padding: 1.25rem 1.35rem !important;
}

#modalGeneratePassword .modal-body .col-form-label {
    color: var(--hx-text-soft) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

#modalGeneratePassword .modal-body .form-control {
    background: var(--hx-bg-input-strong) !important;
    border: 1px solid var(--hx-border-input) !important;
    color: var(--hx-text) !important;
    border-radius: 11px !important;
    min-height: 44px;
}

#modalGeneratePassword .modal-body .form-control:focus {
    outline: none !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
    background: rgba(20, 35, 60, 0.95) !important;
}

#modalGeneratePassword .modal-body input:-webkit-autofill,
#modalGeneratePassword .modal-body input:-webkit-autofill:hover,
#modalGeneratePassword .modal-body input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--hx-text) !important;
    caret-color: var(--hx-text);
    -webkit-box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    box-shadow: 0 0 0 1000px var(--hx-bg-input-strong) inset !important;
    border: 1px solid var(--hx-border-input) !important;
    filter: none !important;
    transition: background-color 99999s ease-out 0s;
}

#modalGeneratePassword .modal-body .btn-default {
    background: rgba(25, 195, 255, 0.1) !important;
    color: var(--hx-text) !important;
    border: 1px solid rgba(25, 195, 255, 0.28) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

#modalGeneratePassword .modal-body .btn-default:hover {
    background: rgba(25, 195, 255, 0.18) !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    color: var(--hx-text) !important;
}

#modalGeneratePassword .modal-body .btn-default img {
    filter: brightness(0) invert(0.85);
    vertical-align: text-bottom;
}

#modalGeneratePassword .modal-footer {
    background: rgba(6, 12, 24, 0.98) !important;
    border-top: 1px solid rgba(25, 195, 255, 0.12) !important;
    padding: 1rem 1.25rem !important;
}

#modalGeneratePassword .modal-footer .btn-default {
    background: rgba(25, 195, 255, 0.1) !important;
    color: var(--hx-text) !important;
    border: 1px solid rgba(25, 195, 255, 0.28) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

#modalGeneratePassword .modal-footer .btn-default:hover {
    background: rgba(25, 195, 255, 0.18) !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    color: var(--hx-text) !important;
}

#modalGeneratePassword .modal-footer .btn-primary,
#modalGeneratePassword .modal-body .btn-primary {
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%) !important;
    border: 0 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(25, 195, 255, 0.28) !important;
}

#modalGeneratePassword .modal-footer .btn-primary:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 22px rgba(25, 195, 255, 0.38) !important;
}

#modalGeneratePassword .alert-danger {
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.38) !important;
    color: #fecaca !important;
    border-radius: 10px !important;
}

body.hxo-themed.modal-open .modal-backdrop {
    background-color: rgba(2, 6, 14, 0.82) !important;
}

/* Tooltip â€žCopied!â€ť dupÄ copiere (clipboard WHMCS â€” clasÄ pe .tooltip-inner din scripts) */
.tooltip-inner.hxo-tooltip-copy {
    background: linear-gradient(180deg, #047857 0%, #22c55e 100%) !important;
    color: #ecfdf5 !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 0.45rem 0.75rem !important;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.tooltip:has(.tooltip-inner.hxo-tooltip-copy).bs-tooltip-bottom .arrow::before {
    border-bottom-color: #22c55e !important;
}

.tooltip:has(.tooltip-inner.hxo-tooltip-copy).bs-tooltip-top .arrow::before {
    border-top-color: #22c55e !important;
}

.tooltip:has(.tooltip-inner.hxo-tooltip-copy).bs-tooltip-left .arrow::before {
    border-left-color: #22c55e !important;
}

.tooltip:has(.tooltip-inner.hxo-tooltip-copy).bs-tooltip-right .arrow::before {
    border-right-color: #22c55e !important;
}

/* reCAPTCHA v2: integrare vizualÄ (theme dark din includes/recaptcha-dark-theme.tpl) */
.register-card #registration .text-center.row.justify-content-center {
    padding-top: 1rem;
    margin-top: 0.35rem;
}

.register-card #registration .recaptcha-container {
    display: inline-block;
    margin: 1rem auto 1rem;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(6, 10, 20, 0.55);
    border: 1px solid rgba(25, 195, 255, 0.12);
}

body.page-login .recaptcha-container {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(6, 10, 20, 0.55);
    border: 1px solid rgba(25, 195, 255, 0.12);
}

/* Footer below card (same tone as global copyright line) */
.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--hx-border);
    color: var(--hx-text-muted);
}
.register-footer p { margin: 0; }
.register-footer__login {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    margin-bottom: 0.65rem !important;
}
.register-footer__login a { font-weight: 600; color: var(--hx-primary); }
.register-footer__copyright {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    line-height: 1.5;
}

/* Alerts inside card */
.register-card .alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.9rem 1rem;
    border-radius: 11px;
    margin-bottom: 1.35rem;
    font-size: 0.875rem;
    line-height: 1.45;
}
.register-card .alert-danger,
.register-card .alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.22); color: #fca5a5; }
.register-card .alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.22); color: #86efac; }
.register-card .alert-info {
    color: var(--hx-primary) !important;
    background: rgba(25, 195, 255, 0.08) !important;
    border-color: rgba(25, 195, 255, 0.2) !important;
}

@media (max-width: 480px) {
    .register-card { padding: 1.5rem 1.25rem 1.6rem; border-radius: 14px; }
    .register-page { padding: 1.5rem 1rem 2rem; }
}

/* ============================================================
   10. Client area dashboard
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 195, 255, 0.4) !important;
    box-shadow: 0 12px 30px rgba(25, 195, 255, 0.15);
}

.stat-card:hover::before { opacity: 1; }
.stat-card:hover .stat-icon { transform: scale(1.1); }
.stat-card:active { transform: translateY(-2px); }

.stat-content { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--hx-bg-muted);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.stat-icon.green { color: var(--hx-success); }
.stat-icon.yellow { color: var(--hx-warning); }
.stat-icon.red { color: var(--hx-danger); }
.stat-icon.blue { color: var(--hx-primary); }

.stat-value { font-size: 1.75rem; font-weight: 700; color: var(--hx-text); line-height: 1.2; }
.stat-label { font-size: 0.875rem; color: var(--hx-text-muted); }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-list-cards { display: flex; flex-direction: column; gap: 0.75rem; }

/* Home: rows built from WHMCS $panels menu children (WHMCS 9 â€” no clientsservices on dashboard) */
a.service-card.hxo-panel-service-row {
    color: var(--hx-text);
}
.hxo-panel-service-label { font-size: 0.875rem; line-height: 1.4; word-break: break-word; }
.hxo-panel-service-label a { color: var(--hx-primary); }

/* WHMCS home panel body â†’ same visual language as Hoxta service cards (capturÄ 2) */
.hxo-home-active-products-whmcs .div-service-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: rgba(16, 26, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--hx-text);
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    box-sizing: border-box;
}
.hxo-home-active-products-whmcs .div-service-item:last-child { margin-bottom: 0; }
.hxo-home-active-products-whmcs .div-service-item:hover {
    background: rgba(20, 32, 52, 0.7);
    border-color: rgba(25, 195, 255, 0.12);
}

/* Icon box â€” SVG (nu Font Awesome Ă®n ::before: fontul nu se aplicÄ â†’ pÄtrate goale) */
.hxo-home-active-products-whmcs .div-service-item::before {
    content: "";
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: block;
    border: 1.5px solid rgba(25, 195, 255, 0.35);
    border-radius: 8px;
    background: rgba(10, 18, 34, 0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2319c3ff' d='M4 5h16v2.5H4V5zm0 5.75h16v2.5H4v-2.5zm0 5.75h16V19H4v-2.5z'/%3E%3C/svg%3E") center / 1.1rem no-repeat;
    order: 1;
}

/* Domeniu mare sus; produs cyan sub */
.hxo-home-active-products-whmcs .div-service-name {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.hxo-home-active-products-whmcs .div-service-name .text-domain {
    order: -1;
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
}
.hxo-home-active-products-whmcs .div-service-name .font-weight-bold {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hx-primary);
    line-height: 1.35;
    word-break: break-word;
}
.hxo-home-active-products-whmcs .div-service-name a {
    color: var(--hx-primary);
    text-decoration: none;
}
.hxo-home-active-products-whmcs .div-service-name a:hover {
    text-decoration: underline;
}

.hxo-home-active-products-whmcs .div-service-status {
    order: 3;
    margin-left: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

/* Status â€” culori WHMCS / Bootstrap (verde / roČ™u / galben / gri / albastru) */
.hxo-home-active-products-whmcs .div-service-status .label:not(.label-placeholder) {
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    width: auto !important;
    min-width: 0;
    max-width: none;
    color: #fff !important;
    line-height: 1.25;
}
.hxo-home-active-products-whmcs .div-service-status .label-success,
.hxo-home-active-products-whmcs .div-service-status span.label-success {
    background-color: #28a745 !important;
}
.hxo-home-active-products-whmcs .div-service-status .label-active,
.hxo-home-active-products-whmcs .div-service-status span.label-active {
    background-color: #28a745 !important;
}
.hxo-home-active-products-whmcs .div-service-status .label-danger,
.hxo-home-active-products-whmcs .div-service-status span.label-danger {
    background-color: #dc3545 !important;
}
.hxo-home-active-products-whmcs .div-service-status .label-warning,
.hxo-home-active-products-whmcs .div-service-status span.label-warning {
    background-color: #ffc107 !important;
    color: #1a1a1a !important;
}
.hxo-home-active-products-whmcs .div-service-status .label-info,
.hxo-home-active-products-whmcs .div-service-status span.label-info {
    background-color: #17a2b8 !important;
}
.hxo-home-active-products-whmcs .div-service-status .label-default,
.hxo-home-active-products-whmcs .div-service-status span.label-default,
.hxo-home-active-products-whmcs .div-service-status .label-secondary,
.hxo-home-active-products-whmcs .div-service-status span.label-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
}

/* Clase status-* pe acelaČ™i span (unele build-uri WHMCS) */
.hxo-home-active-products-whmcs .div-service-status .label.status-active,
.hxo-home-active-products-whmcs .div-service-status .status-active {
    background-color: #28a745 !important;
    color: #fff !important;
}
.hxo-home-active-products-whmcs .div-service-status .label.status-suspended,
.hxo-home-active-products-whmcs .div-service-status .status-suspended {
    background-color: #ffc107 !important;
    color: #1a1a1a !important;
}
.hxo-home-active-products-whmcs .div-service-status .label.status-cancelled,
.hxo-home-active-products-whmcs .div-service-status .status-cancelled {
    background-color: #dc3545 !important;
    color: #fff !important;
}
.hxo-home-active-products-whmcs .div-service-status .label.status-terminated,
.hxo-home-active-products-whmcs .div-service-status .status-terminated {
    background-color: #6c757d !important;
    color: #fff !important;
}
.hxo-home-active-products-whmcs .div-service-status .label.status-pending,
.hxo-home-active-products-whmcs .div-service-status .status-pending {
    background-color: #fd7e14 !important;
    color: #fff !important;
}

/* RoČ›iČ›Ä â€” SVG */
.hxo-home-active-products-whmcs .div-service-buttons {
    display: none !important;
}
.hxo-home-active-products-whmcs .div-service-item::after {
    content: "";
    order: 4;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: block;
    border: 1.5px solid rgba(25, 195, 255, 0.35);
    border-radius: 8px;
    background: rgba(10, 18, 34, 0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2319c3ff' d='M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.31-.08.63-.08.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z'/%3E%3C/svg%3E") center / 1rem no-repeat;
    pointer-events: none;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 26, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: 0.2s;
    text-decoration: none !important;
}

.service-card:hover { background: rgba(20, 32, 52, 0.7); border-color: rgba(25, 195, 255, 0.12); }

.service-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(10, 18, 34, 0.45);
    color: var(--hx-primary);
    font-size: 1rem;
}

/* Primary line (domain / name) â€” white; secondary meta â€” cyan accent (reference dashboard) */
.hxo-svc-primary {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
}

.hxo-svc-productmini {
    margin-top: 3px;
    font-size: 0.75rem;
    color: var(--hx-text-muted);
    font-weight: 500;
}

.hxo-svc-meta-accent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.65rem;
    margin-top: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hx-primary) !important;
}

.hxo-svc-meta-accent .hxo-svc-id-hash {
    font-family: inherit;
    font-weight: 700;
}

.hxo-svc-meta-accent .hxo-svc-cycle,
.hxo-svc-meta-accent .hxo-svc-amount {
    font-family: inherit;
    color: inherit;
}

.service-card-body { flex: 1; min-width: 0; }
.service-card-label { font-size: 0.875rem; color: var(--hx-text-muted); margin-bottom: 0; line-height: 1.35; word-break: break-word; }
.service-card-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hx-text);
    line-height: 1.35;
}
.service-card-sub {
    margin-top: 2px;
    font-size: 0.8125rem;
    color: var(--hx-text-muted);
    line-height: 1.35;
    word-break: break-word;
}
.service-card-label .font-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; color: inherit; }
.service-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; font-size: 0.8rem; color: var(--hx-text-muted); }
.service-card-id { font-family: 'JetBrains Mono', ui-monospace, monospace; color: var(--hx-primary); font-weight: 600; }
.service-card-price { color: #c5d3e0; }
.service-card-cycle { color: var(--hx-text-muted); font-weight: 500; }
.service-card-due { color: var(--hx-text-muted); font-size: 0.75rem; }
.service-card-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.status-badge,
.status-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge-active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.service-card .status-badge:not(.status-badge-active) {
    background: rgba(30, 45, 71, 0.5);
    color: var(--hx-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dashboard ticket status: use WHMCS .status-* + custom colors (nu forČ›a gri peste .service-card) */
.service-card .label.status.hxo-ticket-status-pill,
.services-list-cards .label.status.hxo-ticket-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    line-height: 1.2;
    color: #fff !important;
}
/* fundal galben â€” text Ă®nchis (ca lista WHMCS) */
.service-card .label.status.status-suspended,
.service-card .label.status.status-refunded,
.service-card .label.status.status-pending-transfer {
    color: #1a1a1a !important;
}

/* WHMCS: statusClass poate fi on-hold / in-progress; theme.css are doar .status-onhold / .status-inprogress */
.label.status.status-on-hold,
.label.status.status-on_hold,
.service-card .label.status.hxo-ticket-status-pill.status-on-hold,
.service-card .label.status.hxo-ticket-status-pill.status-on_hold {
    background-color: var(--info) !important;
    border-color: transparent !important;
    color: #fff !important;
}
.label.status.status-in-progress,
.label.status.status-in_progress,
.service-card .label.status.hxo-ticket-status-pill.status-in-progress,
.service-card .label.status.hxo-ticket-status-pill.status-in_progress {
    background-color: var(--warning) !important;
    border-color: transparent !important;
    color: #1a1a1a !important;
}

/* ============================================================
   10a. Dashboard .hxo-dashboard — port 1:1 din tema veche Hoxta
   (dashboard.css + products.css + hoxta-standalone.css)
   ============================================================ */

/* Stat cards — icon boxes colorate (captură referință) */
.hxo-dashboard .stat-card.glass-card {
    padding: 1.25rem;
    text-decoration: none !important;
    color: inherit !important;
}

.hxo-dashboard .stat-card.glass-card > .card-header {
    display: none !important;
}

.hxo-dashboard .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.hxo-dashboard .stat-icon.green {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.hxo-dashboard .stat-icon.yellow {
    color: #eab308;
    background: rgba(234, 179, 8, 0.18);
    border: 1px solid rgba(234, 179, 8, 0.28);
}

.hxo-dashboard .stat-icon.red {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

.hxo-dashboard .stat-icon.blue {
    color: #19c3ff;
    background: rgba(25, 195, 255, 0.15);
    border: 1px solid rgba(25, 195, 255, 0.28);
}

.hxo-dashboard .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hxo-dashboard .stat-label {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
}

.hxo-dashboard .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hxo-dashboard .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 195, 255, 0.4) !important;
    box-shadow: 0 12px 30px rgba(25, 195, 255, 0.15);
}

.hxo-dashboard .stat-card:hover::before {
    opacity: 1;
}

.hxo-dashboard .stat-card:hover .stat-icon {
    transform: scale(1.08);
}

/* Glass cards — panouri servicii / tichete / quick actions */
.hxo-dashboard > .glass-card,
.hxo-dashboard .dashboard-grid .glass-card {
    background: rgba(16, 26, 44, 0.55) !important;
    border: 1px solid rgba(30, 45, 71, 0.85) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.hxo-dashboard .glass-card > .card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--hx-border);
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.05) 0%, rgba(10, 18, 34, 0.2) 100%);
}

.hxo-dashboard .glass-card > .card-header .card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: -0.02em;
    margin: 0;
}

.hxo-dashboard .glass-card > .card-header .hxo-card-viewall {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-primary) !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.hxo-dashboard .glass-card > .card-header .hxo-card-viewall:hover {
    color: var(--hx-primary-hover) !important;
}

.hxo-dashboard .glass-card > .card-body {
    padding: 1.25rem;
}

/* Liste servicii / tichete — products.css */
.hxo-dashboard .services-list-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hxo-dashboard .service-card.service-item,
.hxo-dashboard a.service-card.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 26, 44, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px;
    text-decoration: none !important;
    color: var(--hx-text) !important;
    transition: 0.2s;
}

.hxo-dashboard a.service-card.service-item:hover,
.hxo-dashboard .service-card.service-item:hover {
    background: rgba(20, 32, 52, 0.7) !important;
    border-color: rgba(25, 195, 255, 0.12) !important;
}

.hxo-dashboard .service-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(25, 195, 255, 0.35);
    border-radius: 8px;
    background: rgba(10, 18, 34, 0.45);
    color: #19c3ff;
    font-size: 1rem;
}

.hxo-dashboard .service-card-body {
    flex: 1;
    min-width: 0;
}

.hxo-dashboard .service-card-label {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    margin-bottom: 2px;
    line-height: 1.35;
}

.hxo-dashboard .service-card-label .font-mono,
.hxo-dashboard .service-card-label.hxo-ticket-subject {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
}

.hxo-dashboard .service-card-label .font-mono {
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

.hxo-dashboard .service-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--hx-text-muted);
}

.hxo-dashboard .service-card-id {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    color: #19c3ff !important;
    font-weight: 600;
}

.hxo-dashboard .service-card-price {
    color: #c5d3e0;
    font-weight: 500;
}

.hxo-dashboard .service-card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Badge Active — verde cu punct */
.hxo-dashboard .status-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.hxo-dashboard .status-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

/* Tichete — Answered albastru, Open verde, Customer reply portocaliu */
.hxo-dashboard .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
}

.hxo-dashboard .status-badge.status-answered,
.hxo-dashboard .status-badge.status-answer,
.hxo-dashboard .status-badge[class*="raspuns"],
.hxo-dashboard .status-badge[class*="răspuns"] {
    background: rgba(25, 195, 255, 0.15) !important;
    color: #19c3ff !important;
    border-color: rgba(25, 195, 255, 0.35) !important;
}

.hxo-dashboard .status-badge.status-open,
.hxo-dashboard .status-badge.status-active,
.hxo-dashboard .status-badge.status-deschise,
.hxo-dashboard .status-badge[class*="deschis"] {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

.hxo-dashboard .status-badge.status-customer-reply,
.hxo-dashboard .status-badge.status-customerreply,
.hxo-dashboard .status-badge[class*="customer"] {
    background: rgba(249, 115, 22, 0.15) !important;
    color: #fb923c !important;
    border-color: rgba(249, 115, 22, 0.35) !important;
}

.hxo-dashboard .service-card .status-badge:not(.status-badge-active):not([class*="status-"]) {
    background: rgba(30, 45, 71, 0.5);
    color: var(--hx-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hxo-dashboard .btn-gear {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(30, 45, 71, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: 0.2s;
}

.hxo-dashboard .btn-gear:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
}

.hxo-dashboard .btn-gear i {
    font-size: 0.9rem;
    color: #19c3ff;
}

/* Quick Actions — hoxta-standalone */
.hxo-dashboard .quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hxo-dashboard .action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(16, 26, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #19c3ff !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    text-align: center;
}

.hxo-dashboard .action-btn i {
    font-size: 1.5rem;
    color: #19c3ff;
}

.hxo-dashboard .action-btn:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
    color: #5ddbff !important;
    transform: translateY(-2px);
}

.hxo-dashboard .action-btn:hover i {
    color: #5ddbff;
}

.hxo-dashboard .empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--hx-text-muted);
}

.hxo-dashboard .empty-state .hxo-card-viewall {
    display: inline-block;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .hxo-dashboard .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hxo-dashboard .quick-actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Cele 3 panouri din captură (Services | Tickets + Quick Actions) --- */
.hxo-dashboard .hxo-dash-panels.dashboard-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.25rem !important;
}

@media (min-width: 993px) {
    .hxo-dashboard .hxo-dash-panels.dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

.hxo-dashboard .hxo-dash-panel.hxo-dash-quick {
    width: 100%;
    margin-top: 0;
}

.hxo-dashboard .hxo-dash-services .service-card-label .font-mono {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff !important;
}

.hxo-dashboard .hxo-dash-services .service-card-meta .service-card-id {
    color: #19c3ff !important;
    font-weight: 700;
}

.hxo-dashboard .hxo-dash-services .service-card-meta .service-card-price {
    color: #c5d3e0 !important;
}

.hxo-dashboard .hxo-dash-tickets .service-card-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 4px;
}

.hxo-dashboard .hxo-dash-tickets .service-card-meta .service-card-id {
    color: #19c3ff !important;
    font-weight: 700;
}

.hxo-dashboard .hxo-dash-tickets .service-card-meta .service-card-price {
    color: var(--hx-text-muted) !important;
}

/* Answered / Active — prioritate peste regulile globale din secțiunea 10 */
body.hxo-shell .hxo-dashboard .status-badge.status-answered,
body.hxo-shell .hxo-dashboard .hxo-ticket-row .status-badge.status-answered,
body.hxo-shell .hxo-dashboard .status-badge.status-answer,
body.hxo-shell .hxo-dashboard .status-badge[class*="răspuns"],
body.hxo-shell .hxo-dashboard .status-badge[class*="raspuns"] {
    background: rgba(25, 195, 255, 0.12) !important;
    color: #19c3ff !important;
    border: 1px solid rgba(25, 195, 255, 0.4) !important;
}

body.hxo-shell .hxo-dashboard .status-badge-active {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
}

body.hxo-shell .hxo-dashboard .btn-gear {
    background: rgba(10, 18, 34, 0.55) !important;
    border: 1.5px solid rgba(25, 195, 255, 0.4) !important;
}

body.hxo-shell .hxo-dashboard .btn-gear:hover {
    background: rgba(25, 195, 255, 0.12) !important;
    border-color: rgba(25, 195, 255, 0.55) !important;
}

body.hxo-shell .hxo-dashboard .hxo-dash-quick .action-btn {
    min-height: 110px;
    background: rgba(16, 26, 44, 0.65) !important;
    border: 1px solid rgba(30, 45, 71, 0.9) !important;
}

body.hxo-shell .hxo-dashboard .hxo-dash-quick .action-btn span,
body.hxo-shell .hxo-dashboard .hxo-dash-quick .action-btn i {
    color: #19c3ff !important;
}

@media (max-width: 991px) {
    .hxo-dashboard .hxo-dash-panels.dashboard-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   10b. Pagina Services â€” 1:1 cu tema veche Hoxta (products.css + clientareaproducts)
   ============================================================ */

.hxo-services-products-page.services-page .page-title {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.hxo-services-products-page .services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hxo-services-products-page .services-header-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hxo-services-products-page .services-count {
    font-size: 0.875rem;
    color: var(--hx-text-muted, #8b9cb3);
}

.hxo-services-products-page .services-count strong {
    color: var(--hx-text);
    font-weight: 700;
}

.hxo-services-products-page .btn-new-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hxo-services-products-page .btn-new-service:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    color: #fff !important;
}

.hxo-services-products-page .btn-new-service-plus {
    font-weight: 700;
    opacity: 0.95;
}

.hxo-datatables-card-page .table-container {
    overflow-x: auto;
}

#tableServicesList.table-hxo-services-cards {
    width: 100%;
    margin: 0;
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
    border: none !important;
    box-shadow: none !important;
}

.hxo-services-products-page .dataTables_wrapper table#tableServicesList.table-hxo-services-cards,
.hxo-services-products-page .dataTables_wrapper table.table-list.table-hxo-services-cards,
.hxo-invoices-page .dataTables_wrapper table#tableInvoicesList.table-hxo-invoices-cards,
.hxo-invoices-page .dataTables_wrapper table.table-list.table-hxo-invoices-cards {
    border: none !important;
    box-shadow: none !important;
}

.hxo-datatables-card-page .dataTables_wrapper {
    border: none !important;
    box-shadow: none !important;
}

#tableServicesList.table-hxo-services-cards thead {
    display: none;
}

#tableServicesList.table-hxo-services-cards tbody {
    display: block;
}

#tableServicesList.table-hxo-services-cards tbody tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 1rem 1.25rem;
    margin: 0 0 0.75rem 0;
    background: rgba(16, 26, 44, 0.68);
    border: 1px solid rgba(118, 145, 182, 0.45);
    border-radius: 12px;
    color: var(--hx-text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

#tableServicesList.table-hxo-services-cards tbody tr:last-child {
    margin-bottom: 0;
}

#tableServicesList.table-hxo-services-cards tbody tr:hover {
    background: rgba(20, 34, 55, 0.78);
    border-color: rgba(25, 195, 255, 0.32);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 0 1px rgba(25, 195, 255, 0.06);
}

#tableServicesList.table-hxo-services-cards tbody td {
    border: none;
    vertical-align: middle;
    background: transparent !important;
    padding: 0 !important;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-page-icon-box {
    margin: 0;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-page-icon-stack {
    position: relative;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-page-icon-server {
    font-size: 1rem;
    line-height: 1;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-ssl-corner {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    padding: 1px;
    pointer-events: auto;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-ssl-corner img {
    display: block;
    max-width: 14px;
    max-height: 14px;
    width: auto;
    height: auto;
    object-fit: contain;
}

#tableServicesList.table-hxo-services-cards .hxo-svc-ssl-corner-warn {
    border-color: rgba(248, 113, 113, 0.35);
}

#tableServicesList.table-hxo-services-cards .hxo-svc-page-body {
    flex: 1 1 220px;
    min-width: 0;
    text-align: left;
}

#tableServicesList.table-hxo-services-cards .service-card-body {
    flex: 1;
    min-width: 0;
}

#tableServicesList.table-hxo-services-cards .service-card-label {
    font-size: 0.875rem;
    color: var(--hx-text-muted, #8b9cb3);
    margin-bottom: 2px;
    line-height: 1.35;
    word-break: break-word;
}

#tableServicesList.table-hxo-services-cards .service-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--hx-text-muted, #8b9cb3);
    margin-top: 2px;
}

#tableServicesList.table-hxo-services-cards .service-card-id {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--hx-primary);
    font-weight: 600;
}

#tableServicesList.table-hxo-services-cards .service-card-price {
    color: #c5d3e0;
}

#tableServicesList.table-hxo-services-cards td.hxo-svc-dt-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Badge-uri ca products.css Hoxta (nu label WHMCS) */
#tableServicesList.table-hxo-services-cards .status-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

#tableServicesList.table-hxo-services-cards .status-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

#tableServicesList.table-hxo-services-cards .status-badge:not(.status-badge-active) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(30, 45, 71, 0.5);
    color: var(--hx-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ----- Invoices list (card rows â€” portat din tema veche Hoxta + DataTables) ----- */
.hxo-invoices-page .invoices-header,
.hxo-invoices-page .hxo-invoices-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hxo-invoices-page .invoices-header .page-title,
.hxo-invoices-page .hxo-invoices-header .page-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hx-text);
}

.hxo-invoices-page .invoices-count {
    font-size: 0.875rem;
    color: var(--hx-text-soft);
}

.hxo-invoices-page .invoices-count strong {
    color: var(--hx-text);
}

#tableInvoicesList.table-hxo-invoices-cards {
    width: 100%;
    margin: 0;
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
    border: none !important;
    box-shadow: none !important;
}

#tableInvoicesList.table-hxo-invoices-cards thead {
    display: none;
}

#tableInvoicesList.table-hxo-invoices-cards tbody {
    display: block;
}

#tableInvoicesList.table-hxo-invoices-cards tbody tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    padding: 0.75rem 1.1rem;
    margin: 0 0 0.75rem 0;
    background: rgba(16, 26, 44, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    color: var(--hx-text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

#tableInvoicesList.table-hxo-invoices-cards tbody tr:last-child {
    margin-bottom: 0;
}

#tableInvoicesList.table-hxo-invoices-cards tbody tr:hover {
    background: rgba(20, 34, 55, 0.82);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 0 0 1px rgba(25, 195, 255, 0.08);
}

#tableInvoicesList.table-hxo-invoices-cards tbody td {
    border: none;
    vertical-align: middle;
    background: transparent !important;
    padding: 0 !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-main {
    flex: 1 1 200px;
    min-width: 0;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-main-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-icon-box {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(10, 16, 28, 0.65);
    border: 1px solid rgba(110, 135, 170, 0.28);
    color: var(--hx-primary);
    font-size: 1.2rem;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-icon-box i {
    line-height: 1;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-main-text {
    flex: 1;
    min-width: 0;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-id {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--hx-primary);
    text-decoration: none !important;
    display: block;
    flex-shrink: 0;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-id:hover {
    text-decoration: underline !important;
    color: var(--hx-primary-hover);
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-dates-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(17, 31, 53, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--hx-text-soft);
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-pill i {
    font-size: 0.75rem;
    opacity: 0.85;
    color: var(--hx-primary);
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-pill-due-prefix {
    margin-right: 0.25rem;
    opacity: 0.88;
}

#tableInvoicesList.table-hxo-invoices-cards td.hxo-inv-dt-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status.hxo-inv-status-pill {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    border: 1px solid transparent !important;
    background: rgba(30, 45, 71, 0.55) !important;
    color: var(--hx-text) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .hxo-inv-status-pill i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.72rem;
    flex-shrink: 0;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-paid.hxo-inv-status-pill {
    background: rgba(22, 101, 52, 0.45) !important;
    color: #4ade80 !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-unpaid.hxo-inv-status-pill {
    background: rgba(239, 68, 68, 0.22) !important;
    color: #f87171 !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-overdue.hxo-inv-status-pill {
    background: rgba(239, 68, 68, 0.3) !important;
    color: #ff9b9b !important;
    border-color: rgba(239, 68, 68, 0.45) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-cancelled.hxo-inv-status-pill {
    background: rgba(122, 139, 163, 0.22) !important;
    color: #9ca3af !important;
    border-color: rgba(122, 139, 163, 0.35) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-refunded.hxo-inv-status-pill,
#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-collections.hxo-inv-status-pill,
#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-draft.hxo-inv-status-pill {
    background: rgba(107, 126, 149, 0.2) !important;
    color: var(--hx-text-muted) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .label.status-fraud.hxo-inv-status-pill {
    background: rgba(239, 68, 68, 0.25) !important;
    color: #f87171 !important;
    border-color: rgba(239, 68, 68, 0.45) !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-left: auto;
    align-self: center;
}

/* Doar pill-urile (sumÄ + status) â€” subČ›iri; butoanele rÄmĂ˘n 36px */
#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .hxo-inv-total-pill,
#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .hxo-inv-status-pill {
    box-sizing: border-box;
    min-height: 30px;
    height: 30px;
    margin: 0 !important;
    vertical-align: middle !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .hxo-inv-action-btn,
#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-page-actions .hxo-inv-btn-pay {
    margin: 0 !important;
    vertical-align: middle !important;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-total-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 31, 53, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.2;
    color: var(--hx-text);
    white-space: nowrap;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-action-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(10, 16, 28, 0.55);
    border: 1px solid rgba(110, 135, 170, 0.32);
    color: var(--hx-primary);
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-action-btn:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.4);
    color: var(--hx-primary-hover);
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-btn-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 36px;
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none !important;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s ease, filter 0.2s ease;
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-btn-pay:hover {
    color: #fff !important;
    filter: brightness(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

#tableInvoicesList.table-hxo-invoices-cards .hxo-inv-btn-pay i {
    color: inherit !important;
}

/* Pagina Facturi: bara â€žShowing / Show entriesâ€ť fÄrÄ chenar pe fundal â€” ca serviciile (captura 2â€“3) */
.hxo-invoices-page.hxo-datatables-card-page .hxo-svc-dt-toolbar.hxo-svc-dt-toolbar-top {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.65rem;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, rgba(20, 32, 54, 0.72) 0%, rgba(14, 22, 40, 0.58) 100%);
    border: 1px solid rgba(110, 135, 170, 0.18);
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    box-sizing: border-box;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-top {
    margin-bottom: 1rem;
}

/* DOM DataTables: `i` (info) apoi `l` (length) â€” spaČ›iere clarÄ, fÄrÄ gol inutil stĂ˘nga */
.hxo-datatables-card-page .hxo-svc-dt-toolbar.hxo-svc-dt-toolbar-top {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem 1.5rem;
    min-height: 3.25rem;
    padding: 0.65rem 1.1rem;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_length {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
    text-align: right;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_length label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem 0.5rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--hx-text-soft);
}

/* â€žShow entriesâ€ť: stilul vine din regulile globale body.hxo-themed select (ca register) */
.hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_length select {
    margin: 0 !important;
    min-width: 4.25rem;
    width: auto;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_info {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.45;
    color: var(--hx-text-soft);
}

@media (max-width: 576px) {
    .hxo-datatables-card-page .hxo-svc-dt-toolbar.hxo-svc-dt-toolbar-top {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_info {
        flex: 1 1 100%;
        text-align: left;
    }

    .hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_length {
        flex: 1 1 100%;
        text-align: left;
    }

    .hxo-datatables-card-page .hxo-svc-dt-toolbar-top .dataTables_length label {
        justify-content: flex-start;
    }
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-bottom {
    margin-top: 1.25rem;
    margin-bottom: 0;
    justify-content: center;
}

/* BarÄ jos: fÄrÄ chenar / fÄrÄ fundal â€” ca captura 2 (doar controale pe fundal paginii) */
.hxo-datatables-card-page .hxo-svc-dt-toolbar.hxo-svc-dt-toolbar-bottom {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1.25rem 0 0.5rem;
    justify-content: center;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar-bottom .dataTables_paginate {
    margin: 0 !important;
    padding: 0 !important;
}

.hxo-datatables-card-page .hxo-svc-dt-toolbar .dataTables_filter {
    display: none !important;
}

.hxo-datatables-card-page .hxo-svc-table-wrap {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.hxo-datatables-card-page .dataTables_filter label,
.hxo-datatables-card-page .dataTables_length label {
    color: var(--hx-text-muted);
    font-size: 0.875rem;
}

.hxo-datatables-card-page .dataTables_info {
    color: var(--hx-text-muted);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.hxo-datatables-card-page .dataTables_paginate {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    float: none !important;
    text-align: center;
}

/* 1:1 cu Hoxta veche: .hoxta-pagination-bar + .hoxta-page-btn (custom.css) â€” mapare pe Bootstrap DataTables */
.hxo-datatables-card-page .dataTables_paginate ul.pagination {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-item {
    margin: 0 !important;
    border: none !important;
}

/* BazÄ = .hoxta-page-btn (inactiv) â€” forČ›at peste theme #444 / alb Bootstrap */
.hxo-datatables-card-page .dataTables_paginate .page-link {
    box-sizing: border-box !important;
    margin-left: 0 !important;
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(30, 45, 71, 0.6) !important;
    color: var(--hx-primary, #19c3ff) !important;
    z-index: auto !important;
    cursor: pointer;
}

.hxo-datatables-card-page .dataTables_paginate .page-item.previous .page-link,
.hxo-datatables-card-page .dataTables_paginate .page-item.next .page-link {
    min-width: auto;
    padding: 0 14px !important;
    white-space: nowrap;
}

.hxo-datatables-card-page .dataTables_paginate .page-item:not(.active):not(.disabled) .page-link:hover {
    background: rgba(25, 195, 255, 0.12) !important;
    border-color: rgba(25, 195, 255, 0.35) !important;
    color: #7ddaff !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-item.active .page-link,
.hxo-datatables-card-page .dataTables_paginate .page-item.active .page-link:focus {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    outline: none !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-item.disabled .page-link {
    opacity: 1 !important;
    pointer-events: none !important;
    cursor: default !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(30, 45, 71, 0.6) !important;
    color: #19c3ff !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-item:first-child .page-link,
.hxo-datatables-card-page .dataTables_paginate .page-item:last-child .page-link {
    border-radius: 10px !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-link:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(25, 195, 255, 0.22) !important;
}

.hxo-datatables-card-page .dataTables_paginate .page-item.active .page-link:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.hxo-datatables-card-page .dataTables_paginate .paging_simple_numbers,
.hxo-datatables-card-page .dataTables_paginate .paging_full_numbers {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hxo-datatables-card-page .dataTables_paginate li.paginate_button.ellipsis .page-link,
.hxo-datatables-card-page .dataTables_paginate li.ellipsis .page-link {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--hx-text-muted) !important;
    cursor: default !important;
    font-weight: 500 !important;
    min-width: auto;
}

/* DataTables + Bootstrap: `paginate_button` e pe <li>, aspectul de buton e pe <a.page-link>.
   Stiluri identice pe ambele niveluri = â€ždublareâ€ť vizualÄ (fundal + bordurÄ pe li Č™i pe a). */
.hxo-datatables-card-page .dataTables_paginate ul.pagination > li.paginate_button {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    min-width: 0 !important;
    height: auto !important;
    display: flex;
    align-items: center;
}

/* Integrare fÄrÄ Bootstrap: buton direct pe <a class="paginate_button"> */
.hxo-datatables-card-page .dataTables_paginate a.paginate_button {
    box-sizing: border-box !important;
    min-width: 2.5rem !important;
    height: 2.5rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(30, 45, 71, 0.6) !important;
    color: #19c3ff !important;
    margin: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.hxo-datatables-card-page .dataTables_paginate a.paginate_button:hover:not(.disabled):not(.current) {
    background: rgba(25, 195, 255, 0.12) !important;
    border-color: rgba(25, 195, 255, 0.35) !important;
    color: #7ddaff !important;
}

.hxo-datatables-card-page .dataTables_paginate a.paginate_button.current,
.hxo-datatables-card-page .dataTables_paginate a.paginate_button.current:hover {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.hxo-datatables-card-page .dataTables_paginate a.paginate_button.disabled,
.hxo-datatables-card-page .dataTables_paginate a.paginate_button.disabled:hover {
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(30, 45, 71, 0.6) !important;
    color: #19c3ff !important;
}

.hxo-datatables-card-page #tableLoading {
    color: var(--hx-text-muted);
}

.btn-gear {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(10, 16, 28, 0.55);
    border: 1px solid rgba(110, 135, 170, 0.32);
    color: transparent;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-gear:hover {
    background: rgba(25, 195, 255, 0.07);
    border-color: rgba(25, 195, 255, 0.35);
}

.btn-gear i {
    font-size: 0.95rem;
    color: #19c3ff;
}

.btn-gear:hover i {
    color: #5ce1ff;
}

.empty-state { text-align: center; padding: 1.5rem 1rem; color: var(--hx-text-muted); }

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(16, 26, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--hx-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.2s;
    text-align: center;
}

.action-btn i { font-size: 1.5rem; color: var(--hx-primary); }

.action-btn:hover {
    background: rgba(25, 195, 255, 0.08);
    border-color: rgba(25, 195, 255, 0.25);
    transform: translateY(-2px);
    color: var(--hx-primary-hover);
}

.action-btn:hover i {
    color: var(--hx-primary-hover);
}

/* ============================================================
   11. Mobile
   ============================================================ */
@media (max-width: 991px) {
    .hoxta-sidebar { transform: translateX(-100%); transition: transform 0.25s ease; }
    .hoxta-sidebar.active { transform: translateX(0); }
    .hoxta-main { margin-left: 0; }
    .mobile-menu-btn { display: inline-flex; }
    .sidebar-close { display: inline-flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .hoxta-content { padding: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .quick-actions { grid-template-columns: 1fr; }
}


/* ===== View Invoice (standalone page) ===== */
body.hxo-view-invoice-page {
    --hxo-inv-bg: #0a1220;
    --hxo-inv-bg-card: rgba(16, 26, 44, 0.6);
    --hxo-inv-bg-input: rgba(30, 45, 71, 0.5);
    --hxo-inv-text: #e8eef5;
    --hxo-inv-text-muted: #7a8ba3;
    --hxo-inv-primary: #19c3ff;
    --hxo-inv-border: rgba(30, 45, 71, 0.8);
    --hxo-inv-success: #22c55e;
    --hxo-inv-danger: #ef4444;
    --hxo-inv-warning: #eab308;
}

body.hxo-view-invoice-page {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--hxo-inv-bg);
    color: var(--hxo-inv-text);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

body.hxo-view-invoice-page .invoice-page {
    flex: 1 0 auto;
}

body.hxo-view-invoice-page > #footer.footer.hxo-site-footer {
    margin-top: auto !important;
    flex-shrink: 0;
    background: var(--hxo-inv-bg) !important;
    background-color: var(--hxo-inv-bg) !important;
    border-top-color: var(--hxo-inv-border) !important;
}

body.hxo-view-invoice-page a {
    color: var(--hxo-inv-primary);
    text-decoration: none;
}

body.hxo-view-invoice-page a:hover {
    color: #00d4ff;
}

body.hxo-view-invoice-page .invoice-page {
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}

body.hxo-view-invoice-page .invoice-page::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(25, 195, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

body.hxo-view-invoice-page .invoice-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

body.hxo-view-invoice-page .glass-card {
    background: var(--hxo-inv-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--hxo-inv-border);
    border-radius: 12px;
}

/* Header facturÄ â€” slim + logo mare (proporČ›ii referinČ›Ä) */
body.hxo-view-invoice-page .invoice-header {
    padding: 0.7rem 1.5rem;
    margin-bottom: 1.25rem;
}

body.hxo-view-invoice-page .invoice-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    min-height: 0;
}

body.hxo-view-invoice-page .invoice-brand img {
    width: auto;
    object-fit: contain;
    display: block;
}

body.hxo-view-invoice-page .invoice-brand {
    flex: 0 0 auto;
    line-height: 0;
}

body.hxo-view-invoice-page .invoice-brand img.hxo-invoice-logo--screen {
    height: auto;
    max-height: 100px;
    max-width: 360px;
    width: auto;
}

body.hxo-view-invoice-page .invoice-brand .hxo-invoice-logo--print {
    display: none;
}

body.hxo-view-invoice-page .invoice-brand .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hxo-inv-text);
}

body.hxo-view-invoice-page .invoice-brand .logo-text .accent {
    color: var(--hxo-inv-primary);
}

body.hxo-view-invoice-page .invoice-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

body.hxo-view-invoice-page .invoice-title-group h1 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--hxo-inv-text);
    margin: 0;
    line-height: 1.15;
}

body.hxo-view-invoice-page .invoice-status {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: capitalize;
}

body.hxo-view-invoice-page .invoice-status.status-paid {
    background: rgba(34, 197, 94, 0.2);
    color: var(--hxo-inv-success);
}

body.hxo-view-invoice-page .invoice-status.status-unpaid {
    background: rgba(239, 68, 68, 0.2);
    color: var(--hxo-inv-danger);
}

body.hxo-view-invoice-page .invoice-status.status-overdue {
    background: rgba(239, 68, 68, 0.25);
    color: #ff6b6b;
}

body.hxo-view-invoice-page .invoice-status.status-cancelled {
    background: rgba(122, 139, 163, 0.15);
    color: var(--hxo-inv-text-muted);
}

body.hxo-view-invoice-page .invoice-status.status-refunded, body.hxo-view-invoice-page .invoice-status.status-collections, body.hxo-view-invoice-page .invoice-status.status-draft {
    background: rgba(107, 126, 149, 0.2);
    color: var(--hxo-inv-text-muted);
}

body.hxo-view-invoice-page .invoice-status.status-payment-pending {
    background: rgba(234, 179, 8, 0.2);
    color: var(--hxo-inv-warning);
}

body.hxo-view-invoice-page .hxo-invoice-alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--hxo-inv-border);
    background: rgba(16, 26, 44, 0.85);
    text-align: center;
    font-size: 0.9375rem;
    color: var(--hxo-inv-text);
}

body.hxo-view-invoice-page .hxo-invoice-alert--success {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(22, 101, 52, 0.2);
}

body.hxo-view-invoice-page .hxo-invoice-alert--danger {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(127, 29, 29, 0.22);
}

body.hxo-view-invoice-page .hxo-invoice-alert--info {
    border-color: rgba(25, 195, 255, 0.28);
    background: rgba(14, 116, 144, 0.15);
}

body.hxo-view-invoice-page .hxo-invoice-notes {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

body.hxo-view-invoice-page .hxo-invoice-notes h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hxo-inv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
}

body.hxo-view-invoice-page .hxo-invoice-notes p {
    margin: 0;
    color: var(--hxo-inv-text);
    line-height: 1.6;
    white-space: pre-wrap;
}

body.hxo-view-invoice-page .ledger-card {
    margin-bottom: 2rem;
    overflow: hidden;
    padding: 0;
}

body.hxo-view-invoice-page .ledger-card .ledger-title {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hxo-inv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--hxo-inv-border);
    background: rgba(30, 45, 71, 0.45);
    margin: 0;
}

body.hxo-view-invoice-page .ledger-card .invoice-table tbody td.text-center {
    text-align: center;
}

body.hxo-view-invoice-page .ledger-card .invoice-table thead th.text-center {
    text-align: center;
}

/* Ledger â€” tabel tranzacČ›ii, aliniat cu items-card */
body.hxo-view-invoice-page .ledger-card .hxo-ledger-table thead th {
    padding: 0.85rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    border-bottom-color: rgba(30, 45, 71, 0.45);
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tbody tr:last-child td {
    border-bottom: none;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-empty-row .hxo-ledger-empty-cell {
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: var(--hxo-inv-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: none;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tbody a {
    color: var(--hxo-inv-primary);
    text-decoration: none;
    font-weight: 600;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tbody a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tfoot {
    background: rgba(10, 18, 32, 0.55);
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tfoot tr.balance-row td {
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(25, 195, 255, 0.28);
    border-bottom: none;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tfoot tr.balance-row td:first-child {
    text-align: left;
    color: var(--hxo-inv-text);
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tfoot tr.balance-row td:last-child {
    text-align: right;
}

body.hxo-view-invoice-page .ledger-card .hxo-ledger-table tfoot .balance-amount {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--hxo-inv-primary);
}

body.hxo-view-invoice-page .invoice-qr-wrapper {
    margin-bottom: 1.5rem;
    text-align: center;
}

body.hxo-view-invoice-page .invoice-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

body.hxo-view-invoice-page .info-card {
    padding: 1.75rem;
}

body.hxo-view-invoice-page .info-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hxo-inv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--hxo-inv-border);
}

body.hxo-view-invoice-page .info-card p {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    color: var(--hxo-inv-text);
    line-height: 1.6;
}

body.hxo-view-invoice-page .client-name {
    font-weight: 600;
    color: var(--hxo-inv-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

body.hxo-view-invoice-page .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

body.hxo-view-invoice-page .detail-row span:first-child {
    color: var(--hxo-inv-text-muted);
    font-weight: 500;
}

body.hxo-view-invoice-page .detail-row span:last-child {
    color: var(--hxo-inv-text);
    font-weight: 600;
    text-align: right;
}

body.hxo-view-invoice-page .detail-paymethod-value {
    display: inline-flex;
    justify-content: flex-end;
}

body.hxo-view-invoice-page .hxo-paymethod-form {
    margin: 0;
}

body.hxo-view-invoice-page .hxo-paymethod-select {
    min-width: 190px;
    height: 36px;
    padding: 0 36px 0 12px;
    border-radius: 8px;
    border: 1px solid var(--hxo-inv-border);
    background: var(--hxo-inv-bg-input);
    color: var(--hxo-inv-text);
    font-size: 0.875rem;
    font-weight: 600;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--hxo-inv-primary) 50%),
        linear-gradient(135deg, var(--hxo-inv-primary) 50%, transparent 50%);
    background-position:
        calc(100% - 16px) calc(50% - 3px),
        calc(100% - 10px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.hxo-view-invoice-page .hxo-paymethod-select:focus, body.hxo-view-invoice-page .hxo-paymethod-select:hover {
    border-color: rgba(25, 195, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.14);
}

body.hxo-view-invoice-page .items-card {
    margin-bottom: 2rem;
    overflow: hidden;
    padding: 0;
}

body.hxo-view-invoice-page .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

body.hxo-view-invoice-page .invoice-table thead {
    background: rgba(30, 45, 71, 0.5);
}

body.hxo-view-invoice-page .invoice-table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hxo-inv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--hxo-inv-border);
}

body.hxo-view-invoice-page .invoice-table thead th.text-right {
    text-align: right;
}

body.hxo-view-invoice-page .invoice-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(30, 45, 71, 0.3);
    font-size: 0.9375rem;
    color: var(--hxo-inv-text);
}

body.hxo-view-invoice-page .invoice-table tbody td.text-right {
    text-align: right;
    font-weight: 600;
}

body.hxo-view-invoice-page .item-description {
    white-space: pre-wrap;
    line-height: 1.6;
}

body.hxo-view-invoice-page .invoice-table tfoot tr td {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    border-bottom: none;
}

body.hxo-view-invoice-page .invoice-table tfoot tr.subtotal-row td, body.hxo-view-invoice-page .invoice-table tfoot tr.tax-row td, body.hxo-view-invoice-page .invoice-table tfoot tr.credit-row td {
    color: var(--hxo-inv-text-muted);
}

body.hxo-view-invoice-page .invoice-table tfoot tr.total-row td {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--hxo-inv-text);
    padding-top: 1.5rem;
    border-top: 2px solid var(--hxo-inv-border);
}

body.hxo-view-invoice-page .invoice-table tfoot tr.paid-row td {
    color: var(--hxo-inv-success);
    font-weight: 600;
}

body.hxo-view-invoice-page .invoice-table tfoot tr.balance-row td {
    font-weight: 700;
    font-size: 1.375rem;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
    border-top: 3px solid var(--hxo-inv-primary);
}

body.hxo-view-invoice-page .balance-amount {
    color: var(--hxo-inv-primary);
}

/* Apply account credit (view invoice) */
body.hxo-view-invoice-page .hxo-credit-apply-card {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: linear-gradient(180deg, rgba(22, 101, 52, 0.12) 0%, rgba(16, 26, 44, 0.55) 100%);
}

body.hxo-view-invoice-page .hxo-credit-apply-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hxo-inv-text);
    margin: 0 0 0.75rem;
}

body.hxo-view-invoice-page .hxo-credit-apply-desc {
    font-size: 0.9375rem;
    color: var(--hxo-inv-text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

body.hxo-view-invoice-page .hxo-credit-apply-desc strong {
    color: var(--hxo-inv-success);
}

body.hxo-view-invoice-page .hxo-credit-apply-form {
    max-width: 28rem;
    margin: 0 auto;
}

body.hxo-view-invoice-page .hxo-credit-apply-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hxo-inv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    text-align: left;
}

body.hxo-view-invoice-page .hxo-credit-apply-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
}

body.hxo-view-invoice-page .hxo-credit-apply-input {
    flex: 1 1 140px;
    min-width: 0;
    min-height: 46px;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--hxo-inv-border);
    background: var(--hxo-inv-bg-input);
    color: var(--hxo-inv-text);
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.9375rem;
}

body.hxo-view-invoice-page .hxo-credit-apply-input:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

body.hxo-view-invoice-page .hxo-credit-apply-submit {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0.65rem 1.25rem;
    border: 0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    color: #052e14;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.hxo-view-invoice-page .hxo-credit-apply-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.38);
}

@media (max-width: 520px) {

    body.hxo-view-invoice-page .hxo-credit-apply-row {
        flex-direction: column;
    }

    body.hxo-view-invoice-page .hxo-credit-apply-submit {
        width: 100%;
    }

}

body.hxo-view-invoice-page .payment-card {
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

body.hxo-view-invoice-page .payment-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hxo-inv-text);
    margin: 0 0 1.25rem;
}

body.hxo-view-invoice-page .hxo-invoice-pay-block {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

body.hxo-view-invoice-page .hxo-invoice-payto {
    width: 100%;
    text-align: center;
    padding: 1rem 1.25rem;
    border: 1px solid var(--hxo-inv-border);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(15, 27, 45, 0.55) 0%, rgba(10, 20, 35, 0.75) 100%);
}

body.hxo-view-invoice-page .hxo-invoice-payto-label {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hxo-inv-text-muted);
}

body.hxo-view-invoice-page .hxo-invoice-payto-address {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--hxo-inv-text);
    white-space: pre-line;
}

body.hxo-view-invoice-page .payment-button-wrapper.hxo-bank-transfer-output {
    width: 100%;
    text-align: center;
    padding: 0.25rem 0;
}

body.hxo-view-invoice-page .payment-button-wrapper.hxo-bank-transfer-output .hxo-bank-row {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.9375rem;
    color: var(--hxo-inv-text);
    line-height: 1.45;
}

body.hxo-view-invoice-page .payment-button-wrapper.hxo-bank-transfer-output .hxo-bank-key {
    color: var(--hxo-inv-text-muted);
    font-weight: 600;
}

body.hxo-view-invoice-page .payment-button-wrapper.hxo-bank-transfer-output .hxo-bank-value {
    color: var(--hxo-inv-text);
    font-weight: 700;
}

body.hxo-view-invoice-page .hxo-payment-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
    gap: 1rem;
    text-align: left;
}

body.hxo-view-invoice-page .hxo-payment-main, body.hxo-view-invoice-page .hxo-payment-summary {
    border: 1px solid rgba(30, 45, 71, 0.8);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(15, 27, 45, 0.76) 0%, rgba(10, 20, 35, 0.9) 100%);
    padding: 1rem;
}

body.hxo-view-invoice-page .hxo-payment-main h3, body.hxo-view-invoice-page .hxo-payment-summary h3 {
    margin: 0 0 0.85rem;
}

body.hxo-view-invoice-page .payment-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

body.hxo-view-invoice-page .hxo-payment-native-wrap {
    justify-content: flex-start;
}

body.hxo-view-invoice-page .hxo-payment-native-wrap > * {
    max-width: 100%;
}

body.hxo-view-invoice-page .payment-button-wrapper.is-updating {
    opacity: 0.45;
    pointer-events: none;
}

body.hxo-view-invoice-page .hxo-payment-unified {
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(30, 45, 71, 0.8);
    background: linear-gradient(180deg, rgba(15, 27, 45, 0.76) 0%, rgba(10, 20, 35, 0.9) 100%);
}

body.hxo-view-invoice-page .hxo-unified-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    padding: 0.7rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #072238;
    background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%);
    box-shadow: 0 6px 18px rgba(25, 195, 255, 0.34);
    transition: all 0.2s ease;
    text-decoration: none;
}

body.hxo-view-invoice-page .hxo-unified-pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 22px rgba(25, 195, 255, 0.42);
    color: #031423;
}

body.hxo-view-invoice-page .hxo-payment-unified form {
    margin: 0;
}

body.hxo-view-invoice-page .hxo-payment-unified iframe {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

body.hxo-view-invoice-page .invoice-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

body.hxo-view-invoice-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

body.hxo-view-invoice-page .btn-outline {
    background: transparent;
    border: 1px solid var(--hxo-inv-border);
    color: var(--hxo-inv-text);
}

body.hxo-view-invoice-page .btn-outline:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hxo-inv-primary);
    transform: translateY(-2px);
}

body.hxo-view-invoice-page .btn-primary {
    background: var(--hxo-inv-primary);
    color: #0a1220;
    border: none;
    box-shadow: 0 4px 20px rgba(25, 195, 255, 0.3);
}

body.hxo-view-invoice-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 195, 255, 0.5);
}

body.hxo-view-invoice-page .payment-button-wrapper .btn, body.hxo-view-invoice-page .payment-button-wrapper button, body.hxo-view-invoice-page .payment-button-wrapper input[type="submit"], body.hxo-view-invoice-page .payment-button-wrapper a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--hxo-inv-primary) !important;
    color: #0a1220 !important;
    border: none !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(25, 195, 255, 0.3);
    text-decoration: none;
}

body.hxo-view-invoice-page .payment-button-wrapper .btn:hover, body.hxo-view-invoice-page .payment-button-wrapper button:hover, body.hxo-view-invoice-page .payment-button-wrapper input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 195, 255, 0.5);
}

body.hxo-view-invoice-page .hxo-payment-native-wrap .paypal-button-container, body.hxo-view-invoice-page .hxo-payment-native-wrap iframe, body.hxo-view-invoice-page .hxo-payment-native-wrap form {
    max-width: 100%;
}

body.hxo-view-invoice-page .hxo-payment-unified .hxo-bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.52rem 0;
    border-bottom: 1px solid rgba(30, 45, 71, 0.7);
    color: var(--hxo-inv-text);
    font-size: 0.95rem;
}

body.hxo-view-invoice-page .hxo-payment-unified .hxo-bank-row:last-child {
    border-bottom: 0;
}

body.hxo-view-invoice-page .hxo-payment-unified .hxo-bank-key {
    color: var(--hxo-inv-text-muted);
    font-weight: 600;
}

body.hxo-view-invoice-page .hxo-payment-unified .hxo-bank-value {
    color: #ecf4ff;
    font-weight: 700;
    text-align: right;
}

body.hxo-view-invoice-page .hxo-payment-summary .invoice-summary {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.hxo-view-invoice-page.hxo-pay-mode .invoice-container {
    max-width: 1360px;
}

body.hxo-view-invoice-page.hxo-pay-mode .invoice-header {
    margin-bottom: 1.2rem;
    padding: 0.7rem 1.5rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .payment-card {
    padding: 1.5rem;
    border-color: rgba(25, 195, 255, 0.2);
    box-shadow: 0 14px 36px rgba(2, 8, 23, 0.34);
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-page-layout {
    grid-template-columns: minmax(560px, 1.52fr) minmax(360px, 1fr);
    gap: 1.35rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary {
    min-height: 430px;
    padding: 1.25rem;
    border-color: rgba(25, 195, 255, 0.16);
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main {
    display: flex;
    flex-direction: column;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-gateway-output {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap {
    justify-content: center;
    align-items: center;
    min-height: 340px;
    padding: 0.6rem;
    border: 1px solid rgba(30, 45, 71, 0.8);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(10, 20, 36, 0.8) 0%, rgba(8, 17, 31, 0.92) 100%);
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-gateway-output {
    border: 1px solid rgba(42, 67, 101, 0.75) !important;
    border-radius: 14px !important;
    padding: 1.3rem 1rem !important;
    background: linear-gradient(180deg, rgba(12, 24, 42, 0.86) 0%, rgba(9, 19, 33, 0.95) 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 24px rgba(2, 8, 23, 0.35) !important;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 0.8rem !important;
    align-items: stretch;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-row {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    gap: 0.4rem;
    min-height: 88px;
    padding: 0.9rem 1rem !important;
    border: 1px solid rgba(70, 103, 145, 0.42) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(18, 34, 58, 0.85) 0%, rgba(11, 23, 40, 0.92) 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 20px rgba(2, 8, 23, 0.32);
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-key {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #89acd2 !important;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-value {
    font-size: 1rem;
    font-weight: 800;
    color: #eef6ff !important;
    word-break: break-word;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-value-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-copy-chip {
    border: 1px solid rgba(88, 136, 188, 0.55);
    background: rgba(14, 33, 58, 0.95);
    color: #9dd6ff;
    border-radius: 999px;
    padding: 0.28rem 0.72rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.16s ease;
    white-space: nowrap;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-copy-chip:hover {
    border-color: rgba(25, 195, 255, 0.8);
    color: #d9f3ff;
    background: rgba(11, 43, 77, 0.95);
    transform: translateY(-1px);
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-tools {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 0.35rem;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-tool-btn {
    border: 1px solid rgba(25, 195, 255, 0.45);
    background: linear-gradient(135deg, rgba(21, 101, 154, 0.35) 0%, rgba(10, 62, 104, 0.65) 100%);
    color: #dff3ff;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output .hxo-bank-tool-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(25, 195, 255, 0.7);
    box-shadow: 0 8px 20px rgba(2, 8, 23, 0.32);
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap .paypal-button-container,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap iframe,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap form {
    width: min(460px, 100%) !important;
}

@media (max-width: 900px) {

    body.hxo-view-invoice-page.hxo-pay-mode #paymentGatewayInput.hxo-bank-transfer-output {
        grid-template-columns: 1fr;
    }

}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap .paypal-button-container {
    transform: scale(1.08);
    transform-origin: top center;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap table {
    margin: 0 auto !important;
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap tr,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap td {
    background: transparent !important;
    border: 0 !important;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap input[type="image"] {
    display: block;
    width: min(360px, 100%) !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(2, 8, 23, 0.38);
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main .hxo-pay-head {
    margin: -1.25rem -1.25rem 1rem !important;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main .hxo-pay-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    text-align: center;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main .hxo-pay-subtitle {
    text-align: center;
    font-size: 1rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-native-wrap img {
    max-width: 100%;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-modern-stack {
    display: grid;
    gap: 0.65rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-item-card,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-meta-card,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-total-band,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-kpi-grid {
    border: 1px solid rgba(80, 112, 149, 0.34);
    background: linear-gradient(180deg, rgba(15, 30, 52, 0.84) 0%, rgba(11, 22, 39, 0.9) 100%);
    border-radius: 12px;
    padding: 0.58rem 0.72rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-item-desc {
    font-size: 1.06rem;
    font-weight: 700;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-item-amount,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-total-band strong {
    font-size: 1.08rem;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-item-label {
    color: #9dc0e6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    font-weight: 700;
}

body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-item-main,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-meta-row,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-kpi-tile,
body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary .hxo-summary-modern .hxo-total-band {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
}

body.hxo-view-invoice-page .payment-methods, body.hxo-view-invoice-page .payment-gateway-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {

    body.hxo-view-invoice-page .hxo-payment-page-layout {
        grid-template-columns: 1fr;
    }

    body.hxo-view-invoice-page.hxo-pay-mode .invoice-container {
        max-width: 100%;
    }

    body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-main,
    body.hxo-view-invoice-page.hxo-pay-mode .hxo-payment-summary {
        min-height: 0;
    }

}

body.hxo-view-invoice-page .payment-method-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 45, 71, 0.5);
    border: 2px solid var(--hxo-inv-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

body.hxo-view-invoice-page .payment-method-option:hover {
    border-color: rgba(25, 195, 255, 0.3);
    background: rgba(30, 45, 71, 0.7);
}

body.hxo-view-invoice-page .payment-method-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

body.hxo-view-invoice-page .payment-method-option label {
    flex: 1;
    color: var(--hxo-inv-text);
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

@media print {

    body.hxo-view-invoice-page *, body.hxo-view-invoice-page *::before, body.hxo-view-invoice-page *::after {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    @page {

        margin: 8mm 10mm;
    
}

    body.hxo-view-invoice-page {
        background: #fff !important;
        color: #111827 !important;
        margin: 0;
        padding: 0;
        font-size: 14px !important;
    }

    body.hxo-view-invoice-page .invoice-page {
        padding: 0 !important;
        background: #fff !important;
        min-height: auto !important;
    }

    body.hxo-view-invoice-page .invoice-page::before {
        display: none !important;
    }

    body.hxo-view-invoice-page .invoice-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.hxo-view-invoice-page .glass-card {
        background: #fff !important;
        border: 1px solid #d1d5db !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        border-radius: 8px !important;
        margin-bottom: 6px !important;
    }

    body.hxo-view-invoice-page .invoice-header {
        background: #fff !important;
        border: 1px solid #d1d5db !important;
        border-radius: 8px !important;
        padding: 18px 22px !important;
        margin-bottom: 8px !important;
    }

    body.hxo-view-invoice-page .hxo-invoice-logo--screen,
    body.hxo-view-invoice-page .invoice-brand .logo-text.hxo-invoice-logo--screen {
        display: none !important;
    }

    body.hxo-view-invoice-page .hxo-invoice-logo--print {
        display: block !important;
        height: 42px !important;
        max-height: 42px !important;
        max-width: 130px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    body.hxo-view-invoice-page .invoice-brand img {
        height: 55px !important;
        max-height: 55px !important;
    }

    body.hxo-view-invoice-page .invoice-brand .logo-text {
        color: #0f172a !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
    }

    body.hxo-view-invoice-page .invoice-brand .logo-text .accent {
        color: #06b6d4 !important;
    }

    body.hxo-view-invoice-page .invoice-title-group h1 {
        color: #0f172a !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }

    body.hxo-view-invoice-page .invoice-status {
        border: none !important;
        padding: 5px 16px !important;
        font-size: 0.7rem !important;
        border-radius: 20px !important;
    }

    body.hxo-view-invoice-page .invoice-status.status-paid {
        background: #22c55e !important;
        color: #fff !important;
    }

    body.hxo-view-invoice-page .invoice-status.status-unpaid, body.hxo-view-invoice-page .invoice-status.status-overdue {
        background: #ef4444 !important;
        color: #fff !important;
    }

    body.hxo-view-invoice-page .invoice-status.status-cancelled {
        background: #94a3b8 !important;
        color: #fff !important;
    }

    body.hxo-view-invoice-page .invoice-info-grid {
        gap: 8px !important;
        margin-bottom: 8px !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    body.hxo-view-invoice-page .info-card {
        padding: 16px 18px !important;
        border-radius: 8px !important;
        border: 1px solid #d1d5db !important;
    }

    body.hxo-view-invoice-page .info-card h3 {
        color: #6b7280 !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        border-bottom: 1px solid #e5e7eb !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
    }

    body.hxo-view-invoice-page .client-name {
        color: #0f172a !important;
        font-weight: 800 !important;
        font-size: 1.15rem !important;
    }

    body.hxo-view-invoice-page .info-card p {
        color: #334155 !important;
        font-size: 0.9rem !important;
        margin-bottom: 3px !important;
    }

    body.hxo-view-invoice-page .detail-row {
        margin-bottom: 4px !important;
        padding: 3px 0 !important;
    }

    body.hxo-view-invoice-page .detail-row span:first-child {
        color: #475569 !important;
        font-size: 0.85rem !important;
    }

    body.hxo-view-invoice-page .detail-row span:last-child {
        color: #111827 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
    }

    body.hxo-view-invoice-page .items-card {
        margin-bottom: 0 !important;
        padding: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        border: 1px solid #d1d5db !important;
    }

    body.hxo-view-invoice-page .invoice-table {
        width: 100% !important;
    }

    body.hxo-view-invoice-page .invoice-table thead {
        background: #f9fafb !important;
    }

    body.hxo-view-invoice-page .invoice-table thead th {
        color: #06b6d4 !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.15em !important;
        border-bottom: 2px solid #e5e7eb !important;
        padding: 12px 14px !important;
        background: #f9fafb !important;
    }

    body.hxo-view-invoice-page .invoice-table tbody td {
        color: #1f2937 !important;
        border-bottom: 1px solid #f3f4f6 !important;
        padding: 13px 14px !important;
        font-size: 1rem !important;
    }

    body.hxo-view-invoice-page .invoice-table tbody td.text-right {
        color: #111827 !important;
        font-weight: 600 !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr td {
        padding: 8px 14px !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.subtotal-row td {
        color: #9ca3af !important;
        font-size: 0.85rem !important;
        border-top: 1px solid #e5e7eb !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.tax-row td {
        color: #9ca3af !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.credit-row td {
        color: #059669 !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.total-row td {
        background: #f8fafc !important;
        color: #0f172a !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        padding: 14px !important;
        border-top: 3px solid #1e293b !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.paid-row td {
        color: #059669 !important;
        font-weight: 600 !important;
    }

    body.hxo-view-invoice-page .invoice-table tfoot tr.balance-row td {
        background: #f0fdfa !important;
        color: #0891b2 !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        border-top: 3px solid #06b6d4 !important;
        padding: 13px 14px !important;
    }

    body.hxo-view-invoice-page .balance-amount {
        color: #0891b2 !important;
    }

    body.hxo-view-invoice-page .invoice-actions, body.hxo-view-invoice-page .payment-card {
        display: none !important;
    }

}

@media (max-width: 640px) {

    body.hxo-view-invoice-page .invoice-page {
        padding: 1rem;
    }

    body.hxo-view-invoice-page .invoice-header-content {
        flex-direction: column;
        text-align: center;
    }

    body.hxo-view-invoice-page .invoice-title-group {
        flex-direction: column;
    }

    body.hxo-view-invoice-page .invoice-actions {
        flex-direction: column;
    }

    body.hxo-view-invoice-page .invoice-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.hxo-view-invoice-page .invoice-table thead th, body.hxo-view-invoice-page .invoice-table tbody td, body.hxo-view-invoice-page .invoice-table tfoot td {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    body.hxo-view-invoice-page .info-card {
        padding: 1.25rem;
    }

}

/* ===== Support Tickets list (card layout â€” Hoxta) ===== */
.hoxta-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hoxta-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 26, 44, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hoxta-card:hover {
    background: rgba(20, 34, 55, 0.82);
    border-color: rgba(25, 195, 255, 0.18);
}

.hoxta-card-main {
    flex: 1;
    min-width: 0;
}

.hoxta-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--hx-text-muted);
}

.hoxta-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hoxta-pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}

.hoxta-pagination-bar a,
.hoxta-pagination-bar span {
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.hoxta-pagination-bar .hoxta-page-btn {
    background: rgba(30, 45, 71, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--hx-primary);
}

.hoxta-pagination-bar .hoxta-page-btn:hover {
    background: rgba(25, 195, 255, 0.12);
    border-color: rgba(25, 195, 255, 0.35);
    color: #7ddaff;
}

.hoxta-pagination-bar .hoxta-page-btn.hoxta-page-active,
.hoxta-pagination-bar .hoxta-page-active {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.hoxta-pagination-bar .hoxta-page-ellipsis {
    background: transparent;
    border: none;
    color: var(--hx-text-muted);
    cursor: default;
    font-weight: 500;
}

.hxo-tickets-page .tickets-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hxo-tickets-page .tickets-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hxo-tickets-page .tickets-header .page-title {
    margin: 0;
}

.hxo-tickets-page .tickets-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hx-text-muted);
    font-size: 0.875rem;
}

.hxo-tickets-page .btn-new-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.hxo-tickets-page .btn-new-ticket:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
    color: #ffffff !important;
    filter: brightness(1.05);
}

.hxo-tickets-page .tickets-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hxo-tickets-page .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(30, 45, 71, 0.5);
    border: 1px solid var(--hx-border);
    border-radius: 9999px;
    font-size: 0.8rem;
    color: var(--hx-text-muted);
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.hxo-tickets-page .stat-pill:hover {
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill.active {
    background: rgba(25, 195, 255, 0.15);
    border-color: var(--hx-primary);
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill .stat-pill-icon {
    font-size: 0.7rem;
    line-height: 1;
}

.hxo-tickets-page .stat-pill--all.active {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--open:not(.active) {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--open .stat-pill-icon {
    color: #facc15;
}

.hxo-tickets-page .stat-pill--answered:not(.active) {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--answered .stat-pill-icon {
    color: #4ade80;
}

.hxo-tickets-page .stat-pill--awaiting:not(.active) {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--awaiting .stat-pill-icon {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--closed:not(.active) {
    color: var(--hx-primary);
}

.hxo-tickets-page .stat-pill--closed .stat-pill-icon {
    color: var(--hx-text-muted);
}

.hxo-tickets-page .stat-pill--open.active .stat-pill-icon,
.hxo-tickets-page .stat-pill--answered.active .stat-pill-icon,
.hxo-tickets-page .stat-pill--awaiting.active .stat-pill-icon,
.hxo-tickets-page .stat-pill--closed.active .stat-pill-icon {
    color: inherit;
}

.hxo-tickets-page .hoxta-card.ticket-card {
    padding: 0.9rem 1.15rem;
    cursor: pointer;
}

.hxo-tickets-page .ticket-id {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 600;
    color: var(--hx-primary);
}

.hxo-tickets-page .ticket-subject {
    color: var(--hx-text);
    font-weight: 600;
    text-decoration: none !important;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.hxo-tickets-page .ticket-subject:hover {
    color: var(--hx-primary);
}

.hxo-tickets-page .ticket-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 31, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: var(--hx-text-soft);
}

.hxo-tickets-page .ticket-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 31, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: var(--hx-text-muted);
}

.hxo-tickets-page .ticket-meta-pill i {
    font-size: 0.72rem;
    opacity: 0.85;
}

.hxo-tickets-page .ticket-card-status {
    display: flex;
    align-items: center;
    margin-right: 0.25rem;
}

.hxo-tickets-page .ticket-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.hxo-tickets-page .ticket-unread {
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 1px rgba(25, 195, 255, 0.2);
}

.hxo-tickets-page .badge-ticket {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
}

.hxo-tickets-page .badge-open {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.hxo-tickets-page .badge-answered {
    background: rgba(34, 197, 94, 0.22);
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.hxo-tickets-page .badge-customer-reply {
    background: rgba(25, 195, 255, 0.15);
    color: var(--hx-primary);
}

.hxo-tickets-page .badge-closed {
    background: rgba(122, 139, 163, 0.15);
    color: var(--hx-text-muted);
}

.hxo-tickets-page .badge-in-progress {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.hxo-tickets-page .badge-on-hold {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.hxo-tickets-page .hxo-ticket-view-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(10, 16, 28, 0.55);
    border: 1px solid rgba(110, 135, 170, 0.32);
    color: var(--hx-primary);
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hxo-tickets-page .hxo-ticket-view-btn:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.4);
    color: var(--hx-primary-hover);
}

.hxo-tickets-page .glass-card.hxo-tickets-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.hxo-tickets-page .hxo-tickets-empty .empty-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(30, 45, 71, 0.5);
    border-radius: 50%;
    color: var(--hx-text-muted);
    font-size: 2rem;
}

.hxo-tickets-page .hxo-tickets-empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hx-text);
    margin: 0 0 0.5rem;
}

.hxo-tickets-page .hxo-tickets-empty p {
    color: var(--hx-text-muted);
    margin: 0 0 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hxo-tickets-page .hoxta-card.ticket-card {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hxo-tickets-page .hoxta-card-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.35rem;
    }

    .hxo-tickets-page .tickets-stats {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
    }
}

/* â”€â”€ Support ticket submit â€” step 2 â”€â”€ */
.hxo-submit-ticket-steptwo.st2-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.hxo-submit-ticket-steptwo .st2-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hxo-submit-ticket-steptwo .st2-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #e8eef5;
    margin: 0;
}

.hxo-submit-ticket-steptwo .st2-subtitle {
    font-size: 0.8125rem;
    color: #6b7e95;
    margin: 3px 0 0;
}

.hxo-submit-ticket-steptwo .st2-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(25, 195, 255, 0.08);
    border: 1px solid rgba(25, 195, 255, 0.2);
    color: #19c3ff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hxo-submit-ticket-steptwo .st2-back:hover {
    background: rgba(25, 195, 255, 0.15);
    color: #19c3ff;
}

.hxo-submit-ticket-steptwo .st2-card {
    background: rgba(13, 24, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.75rem 2rem;
}

.hxo-submit-ticket-steptwo .st2-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #e8eef5;
    margin-bottom: 1.5rem;
}

.hxo-submit-ticket-steptwo .st2-card-head i {
    color: #19c3ff;
}

.hxo-submit-ticket-steptwo .st2-row {
    margin-bottom: 1.25rem;
}

.hxo-submit-ticket-steptwo .st2-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e8eef5;
    margin-bottom: 0.45rem;
}

.hxo-submit-ticket-steptwo .st2-row label .req {
    color: #ef4444;
    margin-left: 2px;
}

.hxo-submit-ticket-steptwo .st2-row-duo,
.hxo-submit-ticket-steptwo .st2-row-trio {
    display: grid;
    gap: 1rem;
}

.hxo-submit-ticket-steptwo .st2-row-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hxo-submit-ticket-steptwo .st2-row-trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hxo-submit-ticket-steptwo .st2-row input[type="text"],
.hxo-submit-ticket-steptwo .st2-row input[type="email"],
.hxo-submit-ticket-steptwo .st2-row textarea,
.hxo-submit-ticket-steptwo #customFieldsContainer .form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(16, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: #e8eef5;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.hxo-submit-ticket-steptwo .st2-row input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.hxo-submit-ticket-steptwo .st2-row input::placeholder,
.hxo-submit-ticket-steptwo .st2-row textarea::placeholder {
    color: rgba(122, 139, 163, 0.5);
}

.hxo-submit-ticket-steptwo .st2-row input:focus,
.hxo-submit-ticket-steptwo .st2-row textarea:focus,
.hxo-submit-ticket-steptwo #customFieldsContainer .form-control:focus {
    border-color: rgba(25, 195, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.08);
}

.hxo-submit-ticket-steptwo .st2-row textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.hxo-submit-ticket-steptwo #customFieldsContainer .form-group {
    margin-bottom: 1.25rem;
}

.hxo-submit-ticket-steptwo #customFieldsContainer .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e8eef5;
    margin-bottom: 0.45rem;
}

.hxo-submit-ticket-steptwo #customFieldsContainer .form-text {
    color: #6b7e95;
    font-size: 0.78rem;
    margin-top: 0.35rem;
}

.hxo-submit-ticket-steptwo .st2-row select.hxo-no-theme-select:not([multiple]) {
    width: 100%;
    box-sizing: border-box;
    min-height: 44px !important;
    padding: 10px 2.25rem 10px 14px !important;
    background-color: rgba(25, 195, 255, 0.06) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 0.65rem !important;
    border: 1.5px solid rgba(25, 195, 255, 0.4) !important;
    border-radius: 12px !important;
    color: #e8eef5 !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    cursor: pointer !important;
    appearance: none !important;
    color-scheme: dark !important;
}

.hxo-submit-ticket-steptwo .st2-cs-wrap {
    position: relative;
    width: 100%;
}

.hxo-submit-ticket-steptwo .st2-cs-trigger {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1.5px solid rgba(25, 195, 255, 0.34);
    background: rgba(25, 195, 255, 0.06);
    color: #e8eef5;
    font-weight: 700;
    font-size: 0.84rem;
    line-height: 1.35;
    padding: 0.65rem 2.4rem 0.65rem 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.hxo-submit-ticket-steptwo .st2-cs-wrap.open .st2-cs-trigger,
.hxo-submit-ticket-steptwo .st2-cs-trigger:focus {
    border-color: rgba(25, 195, 255, 0.55);
    background: rgba(25, 195, 255, 0.085);
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.07);
    outline: none;
}

.hxo-submit-ticket-steptwo .st2-cs-label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hxo-submit-ticket-steptwo .st2-cs-chevron {
    position: absolute;
    right: 0.78rem;
    top: 50%;
    margin-top: -0.36rem;
    font-size: 0.55rem;
    color: #19c3ff;
    transition: transform 0.2s;
    pointer-events: none;
}

.hxo-submit-ticket-steptwo .st2-cs-wrap.open .st2-cs-chevron {
    transform: rotate(180deg);
}

.hxo-submit-ticket-steptwo .st2-cs-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0.28rem;
    background: linear-gradient(180deg, #071126 0%, #050d1d 100%);
    border: 1px solid rgba(25, 195, 255, 0.26);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0;
    max-height: min(48vh, 300px);
    overflow-y: auto;
    z-index: 600;
}

.hxo-submit-ticket-steptwo .st2-cs-wrap.open .st2-cs-menu {
    display: block;
}

.hxo-submit-ticket-steptwo .st2-cs-item {
    padding: 0.56rem 0.85rem;
    color: #e8eef5;
    font-size: 0.79rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.16s ease, color 0.16s ease;
}

.hxo-submit-ticket-steptwo .st2-cs-item:last-child {
    border-bottom: none;
}

.hxo-submit-ticket-steptwo .st2-cs-item:hover {
    background: rgba(25, 195, 255, 0.11);
    color: #fff;
}

.hxo-submit-ticket-steptwo .st2-cs-item.is-selected {
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.18) 0%, rgba(25, 195, 255, 0.1) 100%);
    color: #fff;
}

.hxo-submit-ticket-steptwo select.hxo-no-theme-select.st2-cs-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hxo-submit-ticket-steptwo .upload-zone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(16, 26, 46, 0.5);
    border: 2px dashed rgba(25, 195, 255, 0.22);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hxo-submit-ticket-steptwo .upload-zone.is-dragover,
.hxo-submit-ticket-steptwo .upload-zone:hover {
    border-color: rgba(25, 195, 255, 0.45);
    background: rgba(25, 195, 255, 0.04);
}

.hxo-submit-ticket-steptwo .upload-ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(25, 195, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #19c3ff;
    font-size: 1.15rem;
}

.hxo-submit-ticket-steptwo .upload-txt {
    font-size: 0.85rem;
    color: #6b7e95;
    line-height: 1.5;
}

.hxo-submit-ticket-steptwo .upload-txt strong {
    color: #19c3ff;
    font-weight: 600;
}

.hxo-submit-ticket-steptwo .upload-hint {
    font-size: 0.75rem;
}

.hxo-submit-ticket-steptwo .st2-file-input {
    display: none;
}

.hxo-submit-ticket-steptwo .file-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.hxo-submit-ticket-steptwo .file-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.78rem;
    background: rgba(25, 195, 255, 0.1);
    border: 1px solid rgba(25, 195, 255, 0.25);
    color: #19c3ff;
}

.hxo-submit-ticket-steptwo .st2-add-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.65rem;
    padding: 6px 12px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(25, 195, 255, 0.25);
    color: #19c3ff;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hxo-submit-ticket-steptwo .st2-add-more:hover {
    background: rgba(25, 195, 255, 0.08);
    border-color: rgba(25, 195, 255, 0.45);
}

.hxo-submit-ticket-steptwo .st2-extra-files .st2-extra-file {
    margin-top: 0.5rem;
}

.hxo-submit-ticket-steptwo .st2-extra-file input[type="file"] {
    width: 100%;
    font-size: 0.8rem;
    color: #6b7e95;
}

.hxo-submit-ticket-steptwo .st2-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 9px;
    margin-bottom: 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    font-size: 0.875rem;
}

.hxo-submit-ticket-steptwo .st2-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hxo-submit-ticket-steptwo .st2-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 8px;
    background: transparent;
    color: #6b7e95 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.hxo-submit-ticket-steptwo .st2-btn-back:hover {
    border-color: rgba(25, 195, 255, 0.3);
    color: #19c3ff !important;
}

.hxo-submit-ticket-steptwo .st2-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, #19c3ff, #0ea5e9);
    color: #ffffff !important;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(25, 195, 255, 0.3);
}

.hxo-submit-ticket-steptwo .st2-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(25, 195, 255, 0.45);
    color: #ffffff !important;
}

.hxo-submit-ticket-steptwo .st2-captcha-wrap .hxo-recaptcha-box {
    min-height: 78px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(13, 24, 41, 0.92) 0%, rgba(8, 14, 26, 0.96) 100%);
    border: 1px solid rgba(25, 195, 255, 0.14);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hxo-submit-ticket-steptwo .st2-row-duo,
    .hxo-submit-ticket-steptwo .st2-row-trio {
        grid-template-columns: 1fr;
    }

    .hxo-submit-ticket-steptwo .st2-card {
        padding: 1.25rem 1rem;
    }

    .hxo-submit-ticket-steptwo .st2-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .hxo-submit-ticket-steptwo .st2-btn-back,
    .hxo-submit-ticket-steptwo .st2-btn-submit {
        justify-content: center;
        width: 100%;
    }
}

/* â”€â”€ Support ticket submit â€” confirm (step 4) â”€â”€ */
.hxo-ticket-confirm-page {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

body.hxo-shell .hxo-ticket-confirm-page,
body.hxo-shell .hxo-view-ticket-page.view-ticket-page {
    min-height: 0;
}

.hxo-ticket-confirm-inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hxo-ticket-confirm-card {
    text-align: center;
    padding: 3rem 2rem !important;
}

.hxo-ticket-confirm-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    color: #22c55e;
    font-size: 2rem;
}

.hxo-ticket-confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hx-text);
    margin: 0 0 0.5rem;
}

.hxo-ticket-confirm-desc {
    color: var(--hx-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.hxo-ticket-confirm-id-box {
    padding: 1rem 1.25rem;
    background: rgba(30, 45, 71, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.hxo-ticket-confirm-id-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--hx-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.hxo-ticket-confirm-id-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hx-primary);
}

.hxo-ticket-confirm-id-value a {
    color: inherit;
    text-decoration: none;
}

.hxo-ticket-confirm-id-value a:hover {
    color: var(--hx-primary-hover);
}

.hxo-ticket-confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hxo-ticket-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.hxo-ticket-confirm-btn--primary {
    background: linear-gradient(135deg, #19c3ff, #0ea5e9);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(25, 195, 255, 0.3);
}

.hxo-ticket-confirm-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(25, 195, 255, 0.45);
    color: #ffffff !important;
}

.hxo-ticket-confirm-btn--secondary {
    background: rgba(30, 45, 71, 0.55);
    color: var(--hx-text-muted) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hxo-ticket-confirm-btn--secondary:hover {
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hx-primary) !important;
    background: rgba(25, 195, 255, 0.06);
}

@media (max-width: 480px) {
    .hxo-ticket-confirm-card {
        padding: 2rem 1.25rem !important;
    }

    .hxo-ticket-confirm-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hxo-ticket-confirm-btn {
        justify-content: center;
        width: 100%;
    }
}

/* â”€â”€ View ticket â”€â”€ */
.hxo-view-ticket-page .st2-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 9px;
    margin-bottom: 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    font-size: 0.875rem;
}

.hxo-vt-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 9px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.hxo-vt-notice--warning {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    color: #fde047;
}

.hxo-view-ticket-page.view-ticket-page {
    max-width: 900px;
    margin: 0 auto;
}

.hxo-view-ticket-page .ticket-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hxo-view-ticket-page .ticket-header-main {
    flex: 1;
    min-width: 0;
}

.hxo-view-ticket-page .hxo-vt-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--hx-text);
    margin: 0;
}

.hxo-view-ticket-page .hxo-vt-dept {
    color: var(--hx-text-muted);
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
}

.hxo-view-ticket-page .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(30, 45, 71, 0.5);
    border: 1px solid var(--hx-border);
    border-radius: 8px;
    color: var(--hx-text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
    text-decoration: none !important;
}

.hxo-view-ticket-page .back-btn:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .ticket-actions-bar {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.hxo-view-ticket-page .hxo-vt-btn-reply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #19c3ff, #0ea5e9);
    color: #ffffff !important;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(25, 195, 255, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hxo-view-ticket-page .hxo-vt-btn-reply:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(25, 195, 255, 0.4);
    color: #ffffff !important;
}

.hxo-view-ticket-page .hxo-vt-btn-close:not(.is-disabled),
.hxo-view-ticket-page .btn-close-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    min-height: 40px;
    box-sizing: border-box;
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.35) !important;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.hxo-view-ticket-page .hxo-vt-btn-close:not(.is-disabled) i,
.hxo-view-ticket-page .btn-close-ticket i {
    color: inherit !important;
    font-size: 0.8rem;
}

.hxo-view-ticket-page .hxo-vt-btn-close:not(.is-disabled):hover,
.hxo-view-ticket-page .hxo-vt-btn-close:not(.is-disabled):focus,
.hxo-view-ticket-page .btn-close-ticket:hover,
.hxo-view-ticket-page .btn-close-ticket:focus {
    background: rgba(239, 68, 68, 0.22) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    color: #f87171 !important;
    box-shadow: none !important;
    transform: none;
}

.hxo-view-ticket-page .hxo-vt-btn-close.is-disabled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    min-height: 40px;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(127, 29, 29, 0.2) !important;
    border: 1px solid rgba(248, 113, 113, 0.35) !important;
    border-radius: 8px;
    color: #fca5a5 !important;
    font-size: 0.875rem;
    font-weight: 500;
}

.hxo-view-ticket-page .ticket-info-card {
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.hxo-view-ticket-page .ticket-subject {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hx-text);
    margin: 0 0 1rem;
}

.hxo-view-ticket-page .ticket-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hxo-view-ticket-page .t-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
}

.hxo-view-ticket-page .t-badge-open {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.hxo-view-ticket-page .t-badge-answered {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.24) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.38);
}

.hxo-view-ticket-page .t-badge-customer-reply {
    background: rgba(25, 195, 255, 0.15);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .t-badge-closed {
    background: rgba(122, 139, 163, 0.15);
    color: var(--hx-text-muted);
}

.hxo-view-ticket-page .t-badge-in-progress {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.hxo-view-ticket-page .t-badge-on-hold {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.hxo-view-ticket-page .t-badge-high {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.hxo-view-ticket-page .t-badge-medium {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.hxo-view-ticket-page .t-badge-low {
    background: rgba(122, 139, 163, 0.15);
    color: var(--hx-text-muted);
}

.hxo-view-ticket-page .ticket-meta-row {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--hx-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--hx-border);
    flex-wrap: wrap;
}

.hxo-view-ticket-page .ticket-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hxo-view-ticket-page .messages-timeline {
    position: relative;
    margin-bottom: 2rem;
    padding: 0.2rem 0;
}

.hxo-view-ticket-page .messages-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.38) 0%, rgba(95, 116, 146, 0.2) 100%);
}

.hxo-view-ticket-page .msg-card {
    position: relative;
    margin-left: 44px;
    margin-bottom: 0.95rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(68, 98, 133, 0.28);
    background: linear-gradient(180deg, rgba(12, 24, 41, 0.76) 0%, rgba(10, 20, 35, 0.86) 100%);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.hxo-view-ticket-page .msg-card:hover {
    border-color: rgba(25, 195, 255, 0.36);
    transform: translateY(-1px);
}

.hxo-view-ticket-page .msg-card::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 19px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(108, 132, 162, 0.72);
    background: rgba(9, 19, 33, 0.96);
    z-index: 1;
}

.hxo-view-ticket-page .msg-card::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 25px;
    width: 18px;
    height: 1px;
    background: rgba(86, 116, 151, 0.46);
}

.hxo-view-ticket-page .msg-card.is-staff::before {
    border-color: #19c3ff;
    background: radial-gradient(circle at center, #19c3ff 0 3px, rgba(9, 19, 33, 0.96) 3px);
    box-shadow: 0 0 10px rgba(25, 195, 255, 0.32);
}

.hxo-view-ticket-page .msg-card.is-staff {
    border-left: 3px solid var(--hx-primary);
}

.hxo-view-ticket-page .msg-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hxo-view-ticket-page .msg-sender {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hxo-view-ticket-page .msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hxo-view-ticket-page .msg-avatar.staff {
    background: rgba(25, 195, 255, 0.2);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .msg-avatar.client {
    background: rgba(122, 139, 163, 0.2);
    color: var(--hx-text-muted);
}

.hxo-view-ticket-page .msg-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.hxo-view-ticket-page .msg-name.staff {
    color: var(--hx-primary);
}

.hxo-view-ticket-page .msg-name.client {
    color: var(--hx-text);
}

.hxo-view-ticket-page .msg-requestor-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 600;
    background: rgba(25, 195, 255, 0.15);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .msg-requestor-owner {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.hxo-view-ticket-page .msg-date {
    font-size: 0.8rem;
    color: var(--hx-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hxo-view-ticket-page .msg-body {
    font-size: 0.9375rem;
    color: var(--hx-text);
    line-height: 1.8;
    word-wrap: break-word;
}

.hxo-view-ticket-page .msg-body.markdown-content,
.hxo-view-ticket-page .msg-body.markdown-content p,
.hxo-view-ticket-page .msg-body.markdown-content li {
    color: var(--hx-text);
}

.hxo-view-ticket-page .msg-body a {
    color: var(--hx-primary);
}

.hxo-view-ticket-page .msg-ip {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: var(--hx-text-muted);
}

.hxo-view-ticket-page .msg-attachments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hx-border);
}

.hxo-view-ticket-page .msg-attach-label {
    font-size: 0.8rem;
    color: var(--hx-text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hxo-view-ticket-page .msg-attach-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hxo-view-ticket-page .msg-attach-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(30, 45, 71, 0.5);
    border: 1px solid var(--hx-border);
    border-radius: 6px;
    color: var(--hx-text-muted);
    font-size: 0.8rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.hxo-view-ticket-page .msg-attach-item:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .msg-attach-item.is-removed {
    opacity: 0.6;
    cursor: default;
}

/* Rating â€” barÄ text stĂ˘nga, stele dreapta */
.hxo-view-ticket-page .hxo-vt-rating-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(8, 14, 28, 0.55);
    border: 1px solid rgba(139, 156, 181, 0.22);
    box-sizing: border-box;
}

.hxo-view-ticket-page .hxo-vt-rating-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
    color: #c5d0de;
    text-align: left;
}

.hxo-view-ticket-page .hxo-vt-rating-stars {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
}

body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-stars .rating,
body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-stars .rating-done,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done,
.hxo-view-ticket-page .ticket-reply .rating,
.hxo-view-ticket-page .ticket-reply .rating-done {
    float: none !important;
    clear: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    margin: 0 !important;
    padding: 0 !important;
    unicode-bidi: bidi-override;
    direction: rtl;
    font-size: 1.5rem;
    line-height: 1;
}

.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done {
    direction: ltr;
    unicode-bidi: normal;
    gap: 0.65rem;
}

.hxo-view-ticket-page .ticket-reply .rating span.star,
.hxo-view-ticket-page .ticket-reply .rating-done span.star,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating span.star,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done span.star {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.hxo-view-ticket-page .ticket-reply .rating span.star:hover,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating span.star:hover {
    transform: scale(1.12);
}

.hxo-view-ticket-page .ticket-reply .rating-done .rated,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done .rated {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9aa8bc;
    white-space: nowrap;
}

.hxo-view-ticket-page .ticket-reply .rating span.star:before,
.hxo-view-ticket-page .ticket-reply .rating-done span.star:before,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating span.star:before,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done span.star:before {
    content: "\f005";
    padding: 0;
    color: #4b5f78;
}

.hxo-view-ticket-page .ticket-reply .rating span.star:hover:before,
.hxo-view-ticket-page .ticket-reply .rating span.star:hover ~ span.star:before,
.hxo-view-ticket-page .ticket-reply .rating-done span.star.active:before,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating span.star:hover:before,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating span.star:hover ~ span.star:before,
.hxo-view-ticket-page .hxo-vt-rating-stars .rating-done span.star.active:before {
    content: "\f005";
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
}

@media (max-width: 520px) {
    .hxo-view-ticket-page .hxo-vt-rating-bar {
        flex-wrap: wrap;
    }

    .hxo-view-ticket-page .hxo-vt-rating-stars {
        width: 100%;
        margin-left: 0;
        text-align: right;
    }
}

.hxo-view-ticket-page .hxo-vt-reopen-hint {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #fde68a;
    font-size: 0.875rem;
    line-height: 1.45;
}

.hxo-view-ticket-page .hxo-vt-reopen-hint i {
    margin-right: 0.4rem;
    opacity: 0.9;
}

.hxo-view-ticket-page .reply-section {
    padding: 1.75rem;
}

.hxo-view-ticket-page .reply-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hx-text);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--hx-border);
}

.hxo-view-ticket-page .reply-heading i {
    color: var(--hx-primary);
}

.hxo-view-ticket-page .reply-form .form-group {
    margin-bottom: 1.25rem;
}

.hxo-view-ticket-page .reply-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hx-text);
    margin-bottom: 0.5rem;
}

.hxo-view-ticket-page .reply-form label .req {
    color: #ef4444;
}

.hxo-view-ticket-page .hxo-vt-reply-ident {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hxo-view-ticket-page .hxo-vt-reply-ident input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(16, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: var(--hx-text);
    font-size: 0.9rem;
    box-sizing: border-box;
}

.hxo-view-ticket-page .hxo-vt-reply-ident input:disabled {
    opacity: 0.65;
}

.hxo-view-ticket-page .reply-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(16, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: var(--hx-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 160px;
    box-sizing: border-box;
}

.hxo-view-ticket-page .reply-form textarea:focus {
    outline: none;
    border-color: rgba(25, 195, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.08);
}

.hxo-view-ticket-page .file-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 26, 46, 0.5);
    border: 2px dashed rgba(25, 195, 255, 0.22);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hxo-view-ticket-page .file-upload-area.is-dragover,
.hxo-view-ticket-page .file-upload-area:hover {
    border-color: rgba(25, 195, 255, 0.45);
    background: rgba(25, 195, 255, 0.04);
}

.hxo-view-ticket-page .file-upload-area .upload-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hxo-view-ticket-page .file-upload-area .upload-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    line-height: 1.5;
}

.hxo-view-ticket-page .file-upload-area .upload-text strong {
    color: var(--hx-primary);
    font-weight: 600;
}

.hxo-view-ticket-page .file-upload-area .upload-hint {
    font-size: 0.75rem;
}

.hxo-view-ticket-page .file-upload-area input[type="file"] {
    display: none;
}

.hxo-view-ticket-page .file-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.hxo-view-ticket-page .file-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.78rem;
    background: rgba(25, 195, 255, 0.1);
    border: 1px solid rgba(25, 195, 255, 0.25);
    color: var(--hx-primary);
}

.hxo-view-ticket-page .st2-add-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.65rem;
    padding: 6px 12px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(25, 195, 255, 0.25);
    color: var(--hx-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.hxo-view-ticket-page .reply-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hxo-view-ticket-page .btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #19c3ff, #0ea5e9);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(25, 195, 255, 0.3);
}

.hxo-view-ticket-page .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 195, 255, 0.4);
}

.hxo-view-ticket-page .closed-state {
    text-align: center;
    padding: 3rem 2rem;
}

.hxo-view-ticket-page .closed-state-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: rgba(122, 139, 163, 0.1);
    border-radius: 50%;
    color: var(--hx-text-muted);
    font-size: 1.75rem;
}

.hxo-view-ticket-page .closed-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hx-text);
    margin: 0 0 0.5rem;
}

.hxo-view-ticket-page .closed-state p {
    color: var(--hx-text-muted);
    margin: 0 0 1.5rem;
}

@media (max-width: 768px) {
    .hxo-view-ticket-page .messages-timeline::before,
    .hxo-view-ticket-page .msg-card::before,
    .hxo-view-ticket-page .msg-card::after {
        display: none;
    }

    .hxo-view-ticket-page .msg-card {
        margin-left: 0;
    }

    .hxo-view-ticket-page .ticket-actions-bar {
        width: 100%;
        margin-left: 0;
    }

    .hxo-view-ticket-page .hxo-vt-reply-ident {
        grid-template-columns: 1fr;
    }
}

/* View ticket â€” Close contur roČ™u (suprascrie link cyan global) */
body.hxo-themed.page-viewticket .ticket-actions-bar a.hxo-vt-btn-close:not(.is-disabled),
body.hxo-themed.page-viewticket .ticket-actions-bar a.btn-close-ticket,
body.hxo-themed.page-viewticket .ticket-actions-bar a#closeTicket,
body.hxo-themed .hxo-view-ticket-page .ticket-actions-bar a.hxo-vt-btn-close:not(.is-disabled),
body.hxo-themed .hxo-view-ticket-page .ticket-actions-bar a#closeTicket {
    display: inline-flex !important;
    background: rgba(239, 68, 68, 0.12) !important;
    background-image: none !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.35) !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

body.hxo-themed.page-viewticket .ticket-actions-bar a.hxo-vt-btn-close:not(.is-disabled):hover,
body.hxo-themed.page-viewticket .ticket-actions-bar a#closeTicket:hover,
body.hxo-themed .hxo-view-ticket-page .ticket-actions-bar a.hxo-vt-btn-close:not(.is-disabled):hover {
    background: rgba(239, 68, 68, 0.22) !important;
    color: #f87171 !important;
    box-shadow: none !important;
}

body.hxo-themed.page-viewticket .ticket-actions-bar a.hxo-vt-btn-close i,
body.hxo-themed.page-viewticket .ticket-actions-bar a#closeTicket i {
    color: inherit !important;
}

/* ===== Domains page (clientareadomains) ===== */
.hxo-dom-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.hxo-dom-wrap .hxo-hero {
    border: 1px solid rgba(25, 195, 255, 0.16);
    border-radius: 14px;
    background: radial-gradient(1000px 250px at 95% -80%, rgba(25, 195, 255, 0.16), transparent 56%), rgba(11, 20, 38, 0.78);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    padding: 18px 18px 14px;
    margin-bottom: 14px;
}

.hxo-dom-wrap .hxo-hero h1 {
    margin: 0;
    color: #ecf9ff !important;
    font-size: 2rem;
    font-weight: 800;
}

.hxo-dom-wrap .hxo-hero p {
    margin: 4px 0 0;
    color: #89a9c7 !important;
    font-size: 0.9rem;
}

.hxo-dom-wrap .hxo-tabs {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 6px;
    border-radius: 10px;
    background: rgba(12, 24, 44, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hxo-dom-wrap .hxo-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #8db3d2 !important;
    text-decoration: none !important;
}

.hxo-dom-wrap .hxo-tab:hover {
    border-color: rgba(25, 195, 255, 0.36);
    background: rgba(25, 195, 255, 0.12);
    color: #b9efff !important;
}

.hxo-dom-wrap .hxo-tab.active {
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    border-color: transparent;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hxo-dom-wrap .hxo-main {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(11, 19, 36, 0.74);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    padding: 14px;
}

.hxo-dom-wrap .hxo-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    margin-bottom: 12px;
}

.hxo-dom-wrap .hxo-input {
    width: 100%;
    height: 39px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 14, 30, 0.95);
    color: #d5ecff;
    padding: 0 12px;
    box-sizing: border-box;
}

.hxo-dom-wrap .hxo-input:focus {
    outline: none;
    border-color: rgba(25, 195, 255, 0.38);
}

.hxo-dom-wrap .hxo-input::placeholder {
    color: #6d8aa8;
}

.hxo-dom-wrap .hxo-btn {
    height: 39px;
    padding: 0 12px;
    border-radius: 9px;
    border: 1px solid rgba(25, 195, 255, 0.3);
    background: rgba(25, 195, 255, 0.1);
    color: #a7ecff !important;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.hxo-dom-wrap .hxo-btn-pri,
.hxo-dom-wrap a.hxo-btn-pri.hxo-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-color: transparent;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.hxo-dom-wrap .hxo-btn-pri:hover,
.hxo-dom-wrap a.hxo-btn-pri.hxo-btn-link:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    color: #fff !important;
}

.hxo-dom-wrap .hxo-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.hxo-dom-wrap .hxo-action-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(15, 26, 46, 0.62);
    padding: 14px;
}

.hxo-dom-wrap .hxo-action-card h4 {
    margin: 0 0 4px;
    color: #ecf7ff !important;
    font-size: 15px;
}

.hxo-dom-wrap .hxo-action-card p {
    margin: 0 0 10px;
    color: #88a8c6 !important;
    font-size: 12px;
}

.hxo-dom-wrap .domains-list .domain-card {
    cursor: default;
    flex-wrap: wrap;
}

.hxo-dom-wrap .domain-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hxo-dom-wrap .domain-name {
    font-weight: 700;
    font-size: 1.02rem;
    color: #4fb5ff !important;
    text-decoration: none !important;
}

.hxo-dom-wrap .domain-name:hover {
    color: var(--hx-primary-hover) !important;
}

.hxo-dom-wrap .domain-card-status {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.hxo-dom-wrap .domain-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.1rem;
}

.hxo-dom-wrap .domain-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 31, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: #9fb3cf;
}

.hxo-dom-wrap .domain-meta-pill i {
    font-size: 0.75rem;
    opacity: 0.85;
}

.hxo-dom-wrap .hxo-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.hxo-dom-wrap .hxo-pill.active,
.hxo-dom-wrap .hxo-pill-active {
    background: rgba(34, 197, 94, 0.14);
    color: #22c55e !important;
}

.hxo-dom-wrap .hxo-pill.cancelled,
.hxo-dom-wrap .hxo-pill-cancelled {
    background: rgba(122, 139, 163, 0.15);
    color: #9fb3cf !important;
}

.hxo-dom-wrap .hxo-pill.expired {
    background: rgba(239, 68, 68, 0.14);
    color: #ef4444 !important;
}

.hxo-dom-wrap .hxo-pill.pending,
.hxo-dom-wrap .hxo-pill.grace,
.hxo-dom-wrap .hxo-pill-pending {
    background: rgba(250, 204, 21, 0.14);
    color: #facc15 !important;
}

.hxo-dom-wrap .hxo-links {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hxo-dom-wrap .hxo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 7px;
    border: 1px solid rgba(25, 195, 255, 0.24);
    background: rgba(25, 195, 255, 0.08);
    color: #9ce7ff !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.hxo-dom-wrap .hxo-link:hover {
    background: rgba(25, 195, 255, 0.18);
    border-color: rgba(25, 195, 255, 0.4);
    color: #b9efff !important;
}

.hxo-dom-wrap .hxo-link-disabled {
    cursor: not-allowed !important;
    opacity: 0.55;
    pointer-events: none;
}

.hxo-dom-wrap .hxo-empty {
    text-align: center;
    padding: 34px 14px;
    color: #8baacc !important;
    border: 1px dashed rgba(25, 195, 255, 0.24);
    border-radius: 12px;
    background: rgba(25, 195, 255, 0.03);
    margin-bottom: 12px;
}

.hxo-dom-wrap .hxo-empty h3 {
    margin: 10px 0 6px;
    color: #e8f7ff !important;
}

.hxo-dom-wrap .hxo-empty-icon {
    font-size: 30px;
    color: #52d7ff;
}

body.hxo-themed.page-clientareadomains .main-content .tab-content,
body.hxo-themed.page-clientareadomains #tableDomainsList_wrapper {
    display: none !important;
}

@media (max-width: 900px) {
    .hxo-dom-wrap .hxo-toolbar {
        grid-template-columns: 1fr;
    }

    .hxo-dom-wrap .hxo-grid-2 {
        grid-template-columns: 1fr;
    }

    .hxo-dom-wrap .hoxta-card.domain-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hxo-dom-wrap .hoxta-card-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ===== Domain details (clientareadomaindetails) ===== */
body.hxo-themed.page-clientareadomaindetails .tab-content.margin-bottom,
body.hxo-themed.page-clientareadomaindetails .card.domain-details-legacy {
    display: none !important;
}

body.hxo-themed.page-clientareadomaindetails .domain-detail-page,
body.hxo-themed.page-clientareadomaindetails .tab-content .domain-detail-page {
    display: block !important;
    visibility: visible !important;
}

.domain-detail-page {
    padding-bottom: 2rem;
    max-width: 1120px;
    margin: 0 auto;
}

    .mgmt-quick-links {
        padding: 1.25rem;
        margin-bottom: 1.4rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(25,195,255,0.35) transparent;
        padding-bottom: calc(1.25rem + 6px);
    }
    .mgmt-quick-links::-webkit-scrollbar { height: 6px; }
    .mgmt-quick-links::-webkit-scrollbar-thumb {
        background: rgba(25,195,255,0.28);
        border-radius: 4px;
    }
    .mgmt-quick-links h3 {
        margin: 0 0 0.95rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--hx-text) !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mgmt-quick-links h3 i { color: var(--hx-primary) !important; }
    .mgmt-quick-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.55rem;
        align-items: stretch;
        min-width: 0;
    }
    .mgmt-quick-btn {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 52px;
        padding: 0.5rem 0.42rem;
        border-radius: 10px;
        border: 1px solid rgba(25,195,255,0.22);
        background: rgba(25,195,255,0.06);
        color: #9ce7ff !important;
        text-decoration: none !important;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.25;
        letter-spacing: 0.01em;
        transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .mgmt-quick-btn > i:first-child {
        font-size: 1rem;
        color: rgba(25,195,255,0.92);
        flex-shrink: 0;
    }
    .mgmt-quick-btn:hover {
        background: rgba(25,195,255,0.16);
        border-color: rgba(25,195,255,0.42);
        color: #c4f2ff !important;
        transform: translateY(-1px);
    }
    .mgmt-quick-btn.active {
        background: rgba(25,195,255,0.18);
        border-color: rgba(25,195,255,0.55);
        color: #e5f8ff !important;
        box-shadow: inset 0 0 0 1px rgba(25,195,255,0.2);
    }
    .mgmt-quick-btn--disabled {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 52px;
        padding: 0.5rem 0.42rem;
        border-radius: 10px;
        border: 1px solid rgba(148,163,184,0.2);
        background: rgba(15,23,42,0.35);
        color: rgba(148,163,184,0.65) !important;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.25;
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.72;
    }
    .mgmt-quick-btn--disabled > i:first-child {
        color: rgba(148,163,184,0.5);
    }
    .hxo-domain-subpage .hxo-domain-tool-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .hxo-domain-subpage .hxo-domain-tool-card .card-body {
        padding: 0;
    }
    .hxo-domain-subpage .hxo-domain-form-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        justify-content: center;
        margin-top: 1.25rem;
    }
    .hxo-domain-subpage .hxo-dns-table-wrap {
        margin-top: 0.75rem;
    }
    body.hxo-themed.page-clientareadomaindns .hxo-dns-table,
    body.hxo-themed.page-clientareadomaincontacts .hxo-domain-tool-card .form-control,
    body.hxo-themed.page-clientareadomaingetepp .hxo-domain-tool-card {
        color: var(--hx-text);
    }
    body.hxo-themed.page-clientareadomaindns .hxo-dns-table th,
    body.hxo-themed.page-clientareadomaindns .hxo-dns-table td {
        border-color: rgba(25,195,255,0.12);
        color: var(--hx-text);
        vertical-align: middle;
    }
    body.hxo-themed.page-clientareadomaindns .hxo-dns-table .form-control,
    body.hxo-themed.page-clientareadomaincontacts .form-control,
    body.hxo-themed.page-clientareadomaincontacts .custom-select {
        background: rgba(10,18,34,0.65);
        border-color: rgba(25,195,255,0.22);
        color: var(--hx-text);
    }
    body.hxo-themed.page-clientareadomaincontacts .nav-tabs .nav-link {
        color: rgba(156,231,255,0.85);
        border-color: rgba(25,195,255,0.2);
    }
    body.hxo-themed.page-clientareadomaincontacts .nav-tabs .nav-link.active {
        background: rgba(25,195,255,0.12);
        color: #e5f8ff;
        border-color: rgba(25,195,255,0.35);
    }
    .dom-nav-back {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 16px;
        border-radius: 8px;
        background: rgba(25,195,255,0.08);
        border: 1px solid rgba(25,195,255,0.2);
        color: #19c3ff !important;
        text-decoration: none !important;
        font-size: 0.875rem;
        font-weight: 600;
        transition: all 0.2s;
        margin-bottom: 1.25rem;
    }
    .dom-nav-back:hover {
        background: rgba(25,195,255,0.15);
        color: #19c3ff !important;
    }

    /* AlertĂ„Â deasupra Ă˘â‚¬ĹľĂ˘â€ Â Domain DetailsĂ˘â‚¬ĹĄ pe Auto Renew / subpagini Ă˘â‚¬â€ť spaÄŚâ€şiu vizibil sub bandĂ„Â */
    .domain-detail-page > .alert.hxo-alert.hxo-autorenew-top-alert {
        margin-bottom: 1.5rem !important;
    }

    /* Flash succes (ex. Ă˘â‚¬ĹľChanges savedĂ˘â‚¬ĹĄ dupĂ„Â Auto Renew) Ă˘â‚¬â€ť card, icon, contrast */
    .domain-detail-page > .alert.hxo-alert.hxo-domain-flash.hxo-domain-flash--success {
        display: block;
        padding: 1rem 1.2rem;
        margin-bottom: 1.5rem !important;
        border-radius: 12px;
        border: 1px solid rgba(34, 197, 94, 0.38) !important;
        background: linear-gradient(135deg, rgba(22, 101, 52, 0.22) 0%, rgba(12, 32, 24, 0.72) 50%, rgba(10, 22, 38, 0.65) 100%) !important;
        box-shadow:
            0 4px 22px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        color: #d1fae5 !important;
    }

    .domain-detail-page > .alert.hxo-alert.hxo-domain-flash.hxo-domain-flash--success .hxo-domain-flash__row {
        display: flex;
        align-items: center;
        gap: 0.9rem;
    }

    .domain-detail-page .hxo-domain-flash__iconWrap {
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(34, 197, 94, 0.18);
        border: 1px solid rgba(34, 197, 94, 0.35);
        color: #4ade80;
        font-size: 1.15rem;
    }

    .domain-detail-page .hxo-domain-flash__body {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        min-width: 0;
    }

    .domain-detail-page .hxo-domain-flash__title {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.35;
        color: #ecfdf5 !important;
    }

    .hxo-mgmt-sub-head {
        margin-bottom: 1.35rem;
    }
    .hxo-mgmt-sub-head .domain-detail-title {
        margin-bottom: 0.35rem;
    }
    
    .domain-detail-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; gap: 1.5rem; flex-wrap: wrap; }
    .domain-detail-title { font-size: 1.75rem; font-weight: 700; color: var(--hx-text) !important; margin: 0 0 0.25rem; }
    .domain-detail-subtitle { font-size: 1rem; color: var(--hx-text-muted) !important; margin: 0; }
    .domain-detail-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    
    .btn-renew {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 20px; background: var(--hx-primary) !important; color: #ffffff !important;
        border: none; border-radius: 8px; font-weight: 700; font-size: 0.875rem;
        text-decoration: none !important; cursor: pointer; transition: all 0.2s;
        box-shadow: 0 4px 15px rgba(25, 195, 255, 0.25);
    }
    .btn-renew:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(25, 195, 255, 0.4); color: #ffffff !important; }
    
    .btn-outline {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; background: transparent !important; color: var(--hx-text) !important;
        border: 1px solid var(--hx-border) !important; border-radius: 8px; font-weight: 600;
        font-size: 0.875rem; text-decoration: none !important; cursor: pointer; transition: all 0.2s;
    }
    .btn-outline:hover { background: rgba(25,195,255,0.1) !important; border-color: rgba(25,195,255,0.3) !important; color: var(--hx-primary) !important; }
    
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
    .info-card { padding: 1.75rem; }
    .info-card-title {
        display: flex; align-items: center; gap: 10px;
        font-size: 0.875rem; font-weight: 600; color: var(--hx-text-muted) !important;
        text-transform: uppercase; letter-spacing: 0.05em;
        margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--hx-border);
    }
    .info-card-title i { color: var(--hx-primary) !important; font-size: 1rem; }
    
    .detail-row { display: flex; justify-content: space-between; font-size: 0.9375rem; margin-bottom: 0.875rem; gap: 1rem; }
    .detail-row span:first-child { color: var(--hx-text-muted) !important; font-weight: 500; }
    .detail-row span:last-child { color: var(--hx-text) !important; font-weight: 600; text-align: right; }

    /* Overview Ă˘â‚¬â€ť domain status ca badge (pill), nu text simplu cu subliniere */
    .detail-row span.hxo-status-pill {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0.32rem 0.85rem;
        border-radius: 9999px;
        font-size: 0.8125rem;
        font-weight: 700 !important;
        letter-spacing: 0.03em;
        text-transform: capitalize;
        line-height: 1.25;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
        color: #c8d8ea !important;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    }

    .detail-row span.hxo-status-pill.hxo-status-pill--active {
        color: #bbf7d0 !important;
        background: rgba(34, 197, 94, 0.14);
        border-color: rgba(34, 197, 94, 0.42);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    }

    .detail-row span.hxo-status-pill.hxo-status-pill--expired,
    .detail-row span.hxo-status-pill.hxo-status-pill--cancelled {
        color: #fecaca !important;
        background: rgba(239, 68, 68, 0.12);
        border-color: rgba(239, 68, 68, 0.4);
    }

    .detail-row span.hxo-status-pill.hxo-status-pill--pending,
    .detail-row span.hxo-status-pill.hxo-status-pill--pending-transfer,
    .detail-row span.hxo-status-pill.hxo-status-pill--pending-registration,
    .detail-row span.hxo-status-pill.hxo-status-pill--redemption {
        color: #fde68a !important;
        background: rgba(234, 179, 8, 0.12);
        border-color: rgba(234, 179, 8, 0.38);
    }

    .detail-row span.hxo-status-pill.hxo-status-pill--unknown {
        color: #94a3b8 !important;
        background: rgba(148, 163, 184, 0.08);
        border-color: rgba(148, 163, 184, 0.25);
    }

    /* Security card Ă˘â‚¬â€ť iconiÄŚâ€şe yes/no / lock (fĂ„ÂrĂ„Â gri la Ă˘â‚¬ĹľNoĂ˘â‚¬ĹĄ) */
    .detail-row .hxo-security-ico {
        margin-right: 0.35rem;
        font-size: 1rem;
        vertical-align: -0.12em;
    }

    .detail-row .hxo-security-ico--ok {
        color: #22c55e;
    }

    .detail-row .hxo-security-ico--bad {
        color: #ef4444;
    }

    /* Legacy dacĂ„Â mai existĂ„Â clase vechi pe altĂ„Â paginĂ„Â inclusĂ„Â */
    .status-active { color: #22c55e !important; }
    .status-expired { color: #ef4444 !important; }
    .status-pending { color: #facc15 !important; }
    
    /* Nameserver Section */
    .ns-section { padding: 2rem; margin-bottom: 1.5rem; }
    .ns-section h3 { font-size: 1.125rem; font-weight: 700; color: var(--hx-text) !important; margin: 0 0 1.25rem; display: flex; align-items: center; gap: 10px; }
    .ns-section h3 i { color: var(--hx-primary) !important; }

    /* Nameservers dedicated view: toolbar + grids (WHMCS native POST unchanged) */
    .hxo-ns-manage.ns-section {
        padding: 0;
        margin-bottom: 1.75rem;
        border-radius: 12px;
        overflow: hidden;
    }
    .hxo-ns-inner {
        padding: 1.65rem 1.75rem;
    }
    .ns-page-lead {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 1.15rem;
        padding: 0.82rem 1rem;
        border-radius: 10px;
        background: rgba(25,195,255,0.075);
        border: 1px solid rgba(25,195,255,0.2);
        color: #aedcf3 !important;
        font-size: 0.88rem;
        line-height: 1.45;
    }
    .ns-page-lead-icon {
        flex-shrink: 0;
        margin-top: 2px;
        color: rgba(25,195,255,0.95) !important;
    }
    .hxo-ns-alert {
        margin: 0 0 1rem;
        padding: 12px 16px;
        border-radius: 10px;
    }
    .ns-mode-toolbar {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
        margin-bottom: 1.25rem;
    }
    .ns-mode-chip {
        flex: 1 1 150px;
        margin: 0;
        cursor: pointer;
        display: block;
        position: relative;
    }
    .ns-mode-chip input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        margin: 0;
        width: 100%;
        height: 100%;
    }
    .ns-mode-chip-body {
        display: block;
        text-align: center;
        padding: 0.7rem 0.85rem;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(12,26,46,0.55);
        color: #a8cae3 !important;
        font-size: 0.84rem;
        font-weight: 700;
        line-height: 1.28;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .ns-mode-chip:hover .ns-mode-chip-body {
        border-color: rgba(25,195,255,0.38);
        background: rgba(25,195,255,0.06);
        color: #dff3ff !important;
    }
    .ns-mode-chip input:checked + .ns-mode-chip-body,
    .ns-mode-chip input:focus-visible + .ns-mode-chip-body {
        border-color: rgba(25,195,255,0.52);
        background: rgba(25,195,255,0.14);
        color: #eaf8ff !important;
        box-shadow: inset 0 0 0 1px rgba(25,195,255,0.22);
    }
    .ns-mode-chip-title { display: block; }
    .ns-panel-lead {
        margin: 0 0 0.95rem;
        font-size: 0.88rem;
        font-weight: 600;
        color: #dff3ff !important;
        line-height: 1.4;
    }
    .ns-panel-lead.muted {
        font-weight: 600;
        color: #93b8d9 !important;
    }
    .ns-readonly-grid {
        display: grid;
        gap: 0.55rem;
        margin-bottom: 1.35rem;
    }
    .ns-readonly-row {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 0.65rem;
        align-items: center;
    }
    .ns-readonly-num {
        font-size: 0.76rem;
        font-weight: 800;
        color: var(--hx-primary) !important;
        letter-spacing: 0.04em;
    }
    .ns-form-actions {
        margin-top: 0;
    }
    .ns-editable-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 0.95rem 1rem;
        margin-bottom: 0.85rem;
    }
    /* Custom NS: NS1Ă˘â‚¬â€śNS5 una sub alta (forÄŚâ€şĂ„Â peste Bootstrap / custom.css) */
    #form-ns-custom.ns-form-fields .ns-editable-grid.hxo-ns-editable-stack,
    .hxo-ns-panel-custom .ns-editable-grid.hxo-ns-editable-stack {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.55rem !important;
        margin-bottom: 1.35rem !important;
    }
    #form-ns-custom .ns-editable-grid .hxo-ns-field.form-group,
    .hxo-ns-panel-custom .ns-editable-grid .hxo-ns-field {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        gap: 0.65rem !important;
        align-items: center !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        flex: none !important;
    }
    #form-ns-custom .ns-editable-grid .hxo-ns-field label,
    .hxo-ns-panel-custom .ns-editable-grid .hxo-ns-field label {
        margin-bottom: 0 !important;
        font-size: 0.76rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.04em !important;
        color: var(--hx-primary) !important;
    }
    .hxo-ns-field {
        margin: 0;
    }
    .hxo-ns-field label {
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.76rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--hx-text-muted) !important;
    }
    .hxo-ns-input.domnsinputs,
    input.hxo-ns-input {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px !important;
        background: rgba(30,45,71,0.55) !important;
        border: 1px solid var(--hx-border) !important;
        border-radius: 8px !important;
        color: var(--hx-text) !important;
        font-family: 'JetBrains Mono', ui-monospace, monospace !important;
        font-size: 0.895rem !important;
    }
    .hxo-ns-input.domnsinputs:focus,
    input.hxo-ns-input:focus {
        border-color: var(--hx-primary) !important;
        outline: none;
        box-shadow: 0 0 0 3px rgba(25,195,255,0.12);
    }
    .hxo-ns-private-lead-wrap {
        margin: 0 0 0.25rem;
        padding: 1rem 1.15rem;
        border-radius: 10px;
        background: rgba(10, 20, 38, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .hxo-ns-panel-private .ns-panel-lead {
        margin: 0;
        color: #b8cde4 !important;
        font-weight: 500;
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: 48rem;
    }
    .ns-private-actions {
        margin-top: 1.25rem;
        padding-top: 0.35rem;
    }
    /* CTA discret Ă˘â‚¬â€ť nu foloseÄŚâ„˘te btn-renew (evitĂ„Â cyan plin / glow) */
    .hxo-ns-manage a.hxo-ns-private-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 1.15rem;
        border-radius: 9px;
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.01em;
        text-decoration: none !important;
        color: #a8daf0 !important;
        background: rgba(25, 195, 255, 0.07) !important;
        border: 1px solid rgba(25, 195, 255, 0.28) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .hxo-ns-manage a.hxo-ns-private-cta:hover {
        color: #eaf6fc !important;
        background: rgba(25, 195, 255, 0.14) !important;
        border-color: rgba(25, 195, 255, 0.45) !important;
        transform: translateY(-1px);
    }
    .hxo-ns-manage a.hxo-ns-private-cta i {
        font-size: 0.82rem;
        opacity: 0.9;
    }

    /* Change Nameservers Ă˘â‚¬â€ť mai puÄŚâ€şin luminos, Ä‚Â®n ton cu cardul (nu cyan plin) */
    .hxo-ns-manage .btn-renew {
        background: rgba(25, 195, 255, 0.12) !important;
        color: #c9eef9 !important;
        border: 1px solid rgba(25, 195, 255, 0.38) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 2px 12px rgba(0, 0, 0, 0.22);
    }
    .hxo-ns-manage .btn-renew:hover {
        background: rgba(25, 195, 255, 0.22) !important;
        color: #eaf8ff !important;
        border-color: rgba(25, 195, 255, 0.52) !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
        transform: translateY(-1px);
    }

    .ns-list { display: grid; gap: 0.75rem; }
    .ns-item {
        display: flex; align-items: center; gap: 0.75rem;
        padding: 0.75rem 1rem; background: rgba(30, 45, 71, 0.3);
        border: 1px solid var(--hx-border); border-radius: 8px;
    }
    .ns-item i { color: var(--hx-primary) !important; font-size: 0.875rem; }
    .ns-item span { font-family: 'JetBrains Mono', monospace; font-size: 0.9375rem; color: var(--hx-text) !important; }
    
    .ns-form { margin-top: 1.5rem; }
    .ns-form .form-group { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; align-items: center; }
    .ns-form label { min-width: 30px; font-size: 0.875rem; font-weight: 600; color: var(--hx-text-muted) !important; }
    .ns-form input {
        flex: 1; padding: 10px 14px; background: rgba(30, 45, 71, 0.5) !important;
        border: 1px solid var(--hx-border) !important; border-radius: 8px;
        color: var(--hx-text) !important; font-family: 'JetBrains Mono', monospace; font-size: 0.9375rem;
    }
    .ns-default-display {
        width: 100%;
        box-sizing: border-box;
        flex: 1; padding: 10px 14px; background: rgba(20, 32, 52, 0.55) !important;
        border: 1px solid var(--hx-border) !important; border-radius: 8px;
        color: #c8dce8 !important; font-family: 'JetBrains Mono', monospace; font-size: 0.9375rem;
        cursor: not-allowed;
    }
    .ns-form input:focus { border-color: var(--hx-primary) !important; outline: none; box-shadow: 0 0 0 3px rgba(25,195,255,0.1); }
    .ns-editor-link { margin-top: 1rem; }
    .ns-help {
        margin: 0 0 0.95rem;
        color: var(--hx-text-muted) !important;
        font-size: 0.88rem;
        line-height: 1.45;
    }
    .ns-help a.ns-editor-link {
        color: #19c3ff !important;
        font-weight: 700;
        text-decoration: none !important;
    }
    .ns-mode-list {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        margin-bottom: 1rem;
    }
    .ns-mode-option {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #d4e8ff !important;
        font-size: 0.9rem;
        font-weight: 600;
        width: fit-content;
    }
    .ns-mode-option input[type="radio"] {
        accent-color: #19c3ff;
        width: 14px;
        height: 14px;
    }
    .ns-panel {
        display: none;
    }
    .ns-panel.is-active {
        display: block;
    }

    .extra-options-card { padding: 1.35rem; margin-bottom: 1.5rem; }
    .extra-options-card h3 {
        margin: 0 0 0.65rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--hx-text) !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .extra-options-card h3 i { color: var(--hx-primary) !important; }
    .extra-options-card > p {
        margin: 0 0 1rem;
        color: var(--hx-text-muted) !important;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .extra-options-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 0.85rem;
    }
    .extra-option {
        display: block;
        border: 1px solid var(--hx-border);
        border-radius: 10px;
        background: rgba(30,45,71,0.3);
        padding: 0.9rem 0.95rem;
        text-decoration: none !important;
        transition: all 0.2s;
    }
    .extra-option:hover {
        border-color: rgba(25,195,255,0.38);
        background: rgba(25,195,255,0.08);
        transform: translateY(-1px);
    }
    .extra-option h4 {
        margin: 0 0 0.35rem;
        color: #dff3ff !important;
        font-size: 0.88rem;
        font-weight: 700;
    }
    .extra-option p {
        margin: 0;
        color: #9fb7d2 !important;
        font-size: 0.8rem;
        line-height: 1.45;
    }
    .extra-option form {
        margin-top: 0.65rem;
    }
    .extra-option .form-group label {
        display: block;
        margin-bottom: 0.35rem;
        color: var(--hx-text-muted) !important;
        font-size: 0.75rem;
        font-weight: 600;
    }
    .extra-option .dom-input {
        width: 100%;
        padding: 10px 12px;
        background: rgba(30,45,71,0.5) !important;
        border: 1px solid var(--hx-border) !important;
        border-radius: 8px;
        color: var(--hx-text) !important;
        font-size: 0.86rem;
    }
    
    /* Management Tabs */
    .mgmt-tabs { display: flex; border-bottom: 1px solid var(--hx-border); margin-bottom: 2rem; gap: 0; overflow-x: auto; }
    .mgmt-tab {
        padding: 12px 20px; font-size: 0.875rem; font-weight: 600;
        color: var(--hx-text-muted) !important; text-decoration: none !important;
        border-bottom: 2px solid transparent; transition: all 0.2s;
        white-space: nowrap; cursor: pointer;
    }
    .mgmt-tab:hover { color: var(--hx-text) !important; background: rgba(25,195,255,0.03); }
    .mgmt-tab.active { color: var(--hx-primary) !important; border-bottom-color: var(--hx-primary); }
    
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
    
    /* DNS Records Table */
    .dns-table { width: 100%; border-collapse: collapse; }
    .dns-table th {
        background: rgba(25, 195, 255, 0.06); padding: 10px 14px;
        text-align: left; font-size: 0.8125rem; font-weight: 700;
        color: var(--hx-text-muted) !important; text-transform: uppercase; letter-spacing: 0.05em;
        border-bottom: 1px solid var(--hx-border);
    }
    .dns-table td {
        padding: 10px 14px; border-bottom: 1px solid var(--hx-border);
        font-size: 0.9375rem; color: var(--hx-text) !important;
    }
    .dns-table tr:hover td { background: rgba(25, 195, 255, 0.03); }
    
    @media (max-width: 768px) {
        .domain-detail-header { flex-direction: column; }
        .info-grid { grid-template-columns: 1fr; }
        .ns-form .form-group { flex-direction: column; gap: 0.5rem; }
        #form-ns-custom .ns-editable-grid .hxo-ns-field.form-group,
        .hxo-ns-panel-custom .ns-editable-grid .hxo-ns-field {
            grid-template-columns: 42px minmax(0, 1fr) !important;
            gap: 0.5rem !important;
        }
        .mgmt-quick-grid {
            grid-template-columns: repeat(6, minmax(108px, 1fr));
            width: max(100%, 680px);
        }
        .extra-options-grid { grid-template-columns: 1fr; }
        .ns-mode-list { gap: 0.6rem; }
    }

/* Ă˘â‚¬â€ťĂ˘â‚¬â€ťĂ˘â‚¬â€ť Auto-renew (hxo_mgmt=autorenew) Ă˘â‚¬â€ťĂ˘â‚¬â€ťĂ˘â‚¬â€ť */
.hxo-autorenew-panel.card.glass-card {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.hxo-autorenew-body.card-body {
    padding: 2rem 2rem 1.75rem !important;
}

.hxo-autorenew-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hxo-autorenew-head__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(25, 195, 255, 0.22), rgba(25, 195, 255, 0.06));
    border: 1px solid rgba(25, 195, 255, 0.35);
    color: #19c3ff;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hxo-autorenew-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hx-text) !important;
}

.hxo-autorenew-kicker {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #8fa9c4 !important;
}

.hxo-autorenew-info {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #b9d4ef !important;
}

.hxo-autorenew-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    background: rgba(9, 18, 36, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hxo-autorenew-status__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d4e8fb !important;
}

.hxo-autorenew-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hxo-autorenew-pill--on {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80 !important;
}

.hxo-autorenew-pill--off {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171 !important;
}

.hxo-autorenew-form {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hxo-autorenew-btn.btn {
    min-height: 2.85rem;
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hxo-autorenew-btn.btn-danger {
    background: rgba(127, 29, 29, 0.35) !important;
    border: 1px solid rgba(248, 113, 113, 0.55) !important;
    color: #fca5a5 !important;
    box-shadow: none;
}

.hxo-autorenew-btn.btn-danger:hover {
    background: rgba(185, 28, 28, 0.45) !important;
    border-color: rgba(252, 165, 165, 0.75) !important;
    color: #fecaca !important;
}

.hxo-autorenew-btn.btn-primary {
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.35), rgba(25, 195, 255, 0.12)) !important;
    border: 1px solid rgba(25, 195, 255, 0.55) !important;
    color: #e5f8ff !important;
}

.hxo-autorenew-page .hxo-autorenew-panel {
    margin-top: 0.25rem;
}

/* Flash succes Auto Renew â€” fÄrÄ .alert-success Bootstrap (fundal alb/verde deschis) */
body.hxo-themed.page-clientareadomaindetails .domain-detail-page > .hxo-domain-flash--success,
body.hxo-themed.page-clientareadomaindetails .domain-detail-page > .alert.hxo-domain-flash.hxo-domain-flash--success,
body.hxo-themed.page-clientareadomaindetails .domain-detail-page > .alert.alert-success.hxo-domain-flash--success {
    display: block !important;
    padding: 1rem 1.2rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(34, 197, 94, 0.38) !important;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.22) 0%, rgba(12, 32, 24, 0.72) 50%, rgba(10, 22, 38, 0.65) 100%) !important;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    color: #d1fae5 !important;
}

body.hxo-themed.page-clientareadomaindetails .domain-detail-page > .hxo-domain-flash--success .hxo-domain-flash__row,
body.hxo-themed.page-clientareadomaindetails .domain-detail-page > .alert.hxo-domain-flash--success .hxo-domain-flash__row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

body.hxo-themed.page-clientareadomaindetails .domain-detail-page .hxo-domain-flash__iconWrap {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 1.15rem;
}

body.hxo-themed.page-clientareadomaindetails .domain-detail-page .hxo-domain-flash__title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #ecfdf5 !important;
}

.hxo-autorenew-footnote {
    margin: 0;
    padding: 1rem 1.15rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #8fa9c4 !important;
    background: rgba(25, 195, 255, 0.06);
    border: 1px solid rgba(25, 195, 255, 0.12);
    border-radius: 12px;
}

.hxo-autorenew-footnote .fa-lightbulb {
    margin-right: 0.35rem;
    color: #eab308;
}

/* Domain add-ons (hxo_mgmt=addons) Ă˘â‚¬â€ť layout + butoane (stilurile .btn-prim din clientareadomainaddons.css nu se Ä‚Â®ncarcĂ„Â aici) */
.hxo-domain-addons {
    padding: 1.5rem 1.35rem 1.6rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(165deg, rgba(16, 28, 48, 0.55) 0%, rgba(10, 20, 36, 0.35) 100%);
    border: 1px solid rgba(25, 195, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hxo-domain-addons .dom-card-title {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.hxo-domain-addons-intro {
    margin: 0 0 1.35rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8fa9c4 !important;
    max-width: 58rem;
}

.hxo-addon-row {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.25rem 0.15rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hxo-addon-row:first-of-type {
    padding-top: 0.35rem;
}

.hxo-addon-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0.15rem;
}

.hxo-addon-row__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.08);
    border: 1px solid rgba(25, 195, 255, 0.18);
    color: #5dd4ff;
    padding-top: 0;
}

.hxo-addon-row__icon .fa-2x {
    font-size: 1.35rem;
}

.hxo-addon-row__body {
    flex: 1;
    min-width: 0;
}

.hxo-addon-row__body strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 700;
    color: #e8eef5 !important;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.hxo-addon-row__desc {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #8fa9c4 !important;
}

/* Grup acÄŚâ€şiuni Ă˘â‚¬â€ť aliniere ÄŚâ„˘i spaÄŚâ€şiere uniformĂ„Â */
.hxo-addon-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

/* Butoane scoped: suprascriu Bootstrap / reset browser pentru <button> */
.hxo-domain-addons button.hxo-addon-btn,
.hxo-domain-addons a.hxo-addon-btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.62rem 1.15rem;
    min-height: 2.65rem;
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.hxo-domain-addons button.hxo-addon-btn {
    border-style: solid;
}

.hxo-domain-addons a.hxo-addon-btn {
    border-width: 1px;
    border-style: solid;
}

/* Buy Now Ă˘â‚¬â€ť accent discret, fĂ„ÂrĂ„Â Ă˘â‚¬ĹľneonĂ˘â‚¬ĹĄ; acelaÄŚâ„˘i limbaj ca secundar/danger */
.hxo-domain-addons .hxo-addon-btn--primary {
    border: 1px solid rgba(56, 189, 248, 0.38);
    background: linear-gradient(180deg, rgba(32, 56, 82, 0.92) 0%, rgba(18, 34, 52, 0.96) 100%);
    color: #e8f6ff !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 2px 12px rgba(0, 0, 0, 0.35);
}

.hxo-domain-addons .hxo-addon-btn--primary:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.58);
    background: linear-gradient(180deg, rgba(38, 66, 94, 0.96) 0%, rgba(22, 42, 64, 0.98) 100%);
    color: #fff !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.07) inset,
        0 4px 16px rgba(0, 0, 0, 0.42);
}

.hxo-domain-addons .hxo-addon-btn--primary:active {
    transform: translateY(0);
}

.hxo-domain-addons .hxo-addon-btn--primary:focus-visible {
    outline: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 0 0 2px rgba(14, 116, 144, 0.55),
        0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Manage Ă˘â‚¬â€ť acÄŚâ€şiune secundarĂ„Â, acelaÄŚâ„˘i limbaj vizual ca Ă˘â‚¬ĹľDisableĂ˘â‚¬ĹĄ dar neutru/cyan */
.hxo-domain-addons .hxo-addon-btn--secondary {
    background: rgba(13, 24, 41, 0.75);
    border-color: rgba(25, 195, 255, 0.35);
    color: #9ce7ff !important;
}

.hxo-domain-addons .hxo-addon-btn--secondary:hover {
    background: rgba(25, 195, 255, 0.12);
    border-color: rgba(25, 195, 255, 0.55);
    color: #d4f4ff !important;
}

/* Disable Ă˘â‚¬â€ť contur roÄŚâ„˘u, fundal discret */
.hxo-domain-addons .hxo-addon-btn--danger {
    background: rgba(239, 68, 68, 0.08);
    border-width: 1px;
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5 !important;
}

.hxo-domain-addons .hxo-addon-btn--danger:hover {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.65);
    color: #fecaca !important;
}

@media (max-width: 575px) {
    .hxo-addon-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hxo-domain-addons button.hxo-addon-btn,
    .hxo-domain-addons a.hxo-addon-btn {
        width: 100%;
        justify-content: center;
    }

    .hxo-addon-row {
        flex-direction: column;
        gap: 0.85rem;
    }

    .hxo-addon-row__icon {
        align-self: flex-start;
    }
}

@media (max-width: 575px) {
    .hxo-autorenew-body.card-body {
        padding: 1.5rem 1.2rem 1.35rem !important;
    }

    .hxo-autorenew-status {
        flex-direction: column;
        text-align: center;
    }

    .hxo-autorenew-btn.btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Register nameservers (clientareadomainregisterns) ===== */
.dom-page {
    box-sizing: border-box;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2rem;
    padding-left: clamp(0.75rem, 3vw, 1.75rem);
    padding-right: clamp(0.75rem, 3vw, 1.75rem);
}

.dom-page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2.25rem; flex-wrap: wrap; gap: 1rem;
}
.dom-page-title { font-size: 1.5rem; font-weight: 700; color: var(--hx-text) !important; margin: 0 0 0.2rem; }
.dom-page-sub { font-size: 0.9rem; color: var(--hx-text-muted) !important; margin: 0; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.info-card { margin-bottom: 0; }
.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.detail-row:last-child { border-bottom: 0; }
.detail-row span:first-child {
    color: #8fa7c2 !important;
    font-size: 0.84rem;
    font-weight: 600;
}
.detail-row span:last-child {
    color: #e8eef5 !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
}

.dom-card {
    background: var(--hx-bg-card-solid));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 1.75rem; margin-bottom: 1.5rem;
}
.dom-card-title {
    font-size: 0.9375rem; font-weight: 600; color: #e8eef5 !important;
    margin-bottom: 1.25rem; padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 8px;
}
.dom-card-title i { color: #19c3ff; }

.dom-row { margin-bottom: 1.1rem; }
.dom-label { font-size: 0.8125rem; font-weight: 600; color: #6b7e95 !important; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.dom-value { font-size: 0.9375rem; color: #e8eef5 !important; font-weight: 500; }

.dom-input, .dom-select {
    width: 100%; padding: 10px 14px;
    background: rgba(16,26,46,0.9) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 8px; color: #e8eef5 !important;
    font-family: inherit; font-size: 0.9rem;
    outline: none; box-sizing: border-box; transition: border-color 0.2s;
}
.dom-input:focus, .dom-select:focus { border-color: rgba(25,195,255,0.4) !important; }
.dom-input::placeholder { color: rgba(107,126,149,0.4) !important; }
.dom-select option { background: #0d1829 !important; }

.btn-prim {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 8px;
    background: linear-gradient(135deg,#19c3ff,#0ea5e9);
    color: #fff !important; border: none; font-weight: 700; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(25,195,255,0.25);
    font-family: inherit;
}
.btn-prim:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(25,195,255,0.4); color: #fff !important; }
.btn-sec {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; border-radius: 8px;
    background: transparent; color: #6b7e95 !important;
    border: 1px solid rgba(255,255,255,0.1); font-weight: 600; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important; font-family: inherit;
}
.btn-sec:hover { border-color: rgba(25,195,255,0.3); color: #19c3ff !important; }
.qm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.65rem;
}
.qm-btn {
    justify-content: center;
    min-height: 42px;
    background: rgba(255,255,255,0.02);
}
.qm-btn:hover {
    background: rgba(25,195,255,0.08);
}
.qm-btn.is-active {
    border-color: rgba(25,195,255,0.45);
    color: #9fe8ff !important;
    background: rgba(25,195,255,0.14);
}

.hxo-qm-panel-wrap { margin-top: 1rem; }
.hxo-qm-panel { display: none; }
.hxo-qm-panel.is-active { display: block; }
.hxo-qm-external-content > .dom-card:last-child { margin-bottom: 0; }
.hxo-qm-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ec4df !important;
    font-size: 0.9rem;
}

.extras-grid {
    display: grid;
    gap: 0.9rem;
}
.extra-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(12,22,38,0.45);
}
.extra-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25,195,255,0.12);
    border: 1px solid rgba(25,195,255,0.32);
    color: #19c3ff;
    font-size: 1.2rem;
}
.extra-body h4 {
    margin: 0 0 0.25rem;
    color: #e8eef5 !important;
    font-size: 1rem;
}
.extra-body p {
    margin: 0 0 0.7rem;
    color: #9cb7d2 !important;
    font-size: 0.9rem;
}
.extra-body .btn-prim {
    font-size: 0.88rem;
    padding: 8px 14px;
}
.btn-danger {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; border-radius: 8px;
    background: rgba(239,68,68,0.1); color: #ef4444 !important;
    border: 1px solid rgba(239,68,68,0.25); font-weight: 600; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important; font-family: inherit;
}
.btn-danger:hover { background: rgba(239,68,68,0.2); }

.alert-ok { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80 !important; font-size: 0.875rem; margin-bottom: 1.25rem; }
.alert-err { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5 !important; font-size: 0.875rem; margin-bottom: 1.25rem; }
.alert-warn-ns { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.28); color: #facc15 !important; font-size: 0.875rem; margin-bottom: 1.25rem; }
.alert-info { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(25,195,255,0.08); border: 1px solid rgba(25,195,255,0.2); color: #19c3ff !important; font-size: 0.875rem; margin-bottom: 1.25rem; }

.badge-active { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #22c55e !important; }
.badge-expired { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #ef4444 !important; }
.badge-pending { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.3); color: #eab308 !important; }

.dom-nav-back { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 8px; background: rgba(25,195,255,0.08); border: 1px solid rgba(25,195,255,0.2); color: #19c3ff !important; text-decoration: none !important; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; margin-bottom: 1.5rem; display: inline-flex; }
.dom-nav-back:hover { background: rgba(25,195,255,0.15); color: #19c3ff !important; }

table.dom-table { width: 100%; border-collapse: collapse; }
table.dom-table th { color: #6b7e95 !important; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); background: rgba(25,195,255,0.04); }
table.dom-table td { color: #e8eef5 !important; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
table.dom-table tr:last-child td { border-bottom: none; }
table.dom-table tr:hover td { background: rgba(25,195,255,0.03); }

.ns-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; align-items: center; }
.ns-row .dom-input { flex: 1; }
.ns-num { width: 28px; flex-shrink: 0; font-size: 0.8125rem; color: #6b7e95 !important; font-weight: 600; text-align: center; }
.ns-help { color:#8fa7c2 !important; font-size:0.88rem; margin:0 0 1rem; }

.ns-mode-switch {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.ns-mode-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d7e7f7 !important;
    font-weight: 600;
    font-size: 0.92rem;
}
.ns-mode-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #19c3ff;
}

.ns-mode-panel {
    display: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(10,19,34,0.45);
    padding: 1rem;
}
.ns-mode-panel.is-active { display: block; }
.ns-mode-note {
    color: #97b4d1 !important;
    font-size: 0.84rem;
    margin-bottom: 0.9rem;
}

.private-ns-block {
    padding: 0.9rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    background: rgba(13,24,41,0.55);
    margin-bottom: 0.8rem;
}
.private-ns-block h4 {
    margin: 0 0 0.75rem;
    color: #e8eef5 !important;
    font-size: 1rem;
}
.private-ns-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0.65rem 0.8rem;
    align-items: center;
    margin-bottom: 0.85rem;
}
.private-ns-grid label {
    color: #a8c0d9 !important;
    font-size: 0.87rem;
    font-weight: 600;
}
.private-ns-input-wrap {
    display: grid;
    grid-template-columns: minmax(200px, 360px) auto;
    align-items: center;
    gap: 0.6rem;
}
.private-ns-input-wrap span {
    color: #b8d2ea !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .private-ns-grid { grid-template-columns: 1fr; }
    .private-ns-input-wrap { grid-template-columns: 1fr; }
}

/* Register / modify / delete Ă˘â‚¬â€ť same visual language as hxo-child-ns-panel */
.hxo-registerns-actions {
    margin-top: 2.5rem;
}
.extra-options-grid.hxo-registerns-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}
.extra-option.hxo-registerns-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(165deg, rgba(18,32,54,0.94) 0%, rgba(10,18,34,0.9) 100%);
    box-shadow: 0 10px 36px rgba(0,0,0,0.32);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.extra-option.hxo-registerns-card:hover {
    border-color: rgba(25,195,255,0.18);
    box-shadow: 0 14px 44px rgba(0,0,0,0.38);
}
.extra-option.hxo-registerns-card--danger:hover {
    border-color: rgba(248,113,113,0.22);
}
.hxo-registerns-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(25,195,255,0.045);
}
.hxo-registerns-card--danger .hxo-registerns-card-head {
    background: rgba(239,68,68,0.06);
}
.hxo-registerns-card-icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25,195,255,0.11);
    border: 1px solid rgba(25,195,255,0.22);
    color: #5ee4ff;
    font-size: 0.95rem;
}
.hxo-registerns-card-icon--danger {
    background: rgba(239,68,68,0.12);
    border-color: rgba(239,68,68,0.28);
    color: #fb923c;
}
.hxo-registerns-card-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f0f7fc !important;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.hxo-registerns-card-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 1.1rem 1.15rem 0;
}
.hxo-registerns-card-fields {
    flex: 1 1 auto;
}
.hxo-registerns-card-form .form-group {
    margin-bottom: 0.9rem;
}
.hxo-registerns-card-form .form-group:last-child {
    margin-bottom: 0;
}
.hxo-registerns-card-form label {
    display: block;
    margin-bottom: 0.38rem;
    color: #9fc0da !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hxo-ns-suffix-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.hxo-ns-prefix-input {
    flex: 1 1 120px;
    min-width: 0;
}
.hxo-ns-domain-suffix {
    display: inline-flex;
    align-items: center;
    padding: 0 0.75rem;
    min-height: 42px;
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #b8d9f2 !important;
    background: rgba(25,195,255,0.07);
    border: 1px solid rgba(25,195,255,0.14);
    white-space: nowrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.hxo-registerns-form-footer {
    margin-top: auto;
    padding: 1.15rem 0 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hxo-registerns-submit {
    width: 100%;
    justify-content: center;
}
.hxo-registerns-submit--danger {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .extra-options-grid.hxo-registerns-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Alerts: colÄŚâ€şuri + spaÄŚâ€şiu faÄŚâ€şĂ„Â de titlu / urmĂ„Âtorul bloc (peste margin din tpl) */
.dom-page > .alert-info,
.dom-page > .alert-ok,
.dom-page > .alert-err,
.dom-page > .alert-warn-ns {
    border-radius: 12px;
    margin-bottom: 1.4rem !important;
}
.dom-page > .dom-page-header + .alert-info,
.dom-page > .dom-page-header + .alert-ok,
.dom-page > .dom-page-header + .alert-err,
.dom-page > .dom-page-header + .alert-warn-ns {
    margin-top: 0.25rem;
}
.dom-page > .alert-info + .alert-ok,
.dom-page > .alert-info + .alert-err,
.dom-page > .alert-info + .alert-warn-ns,
.dom-page > .alert-ok + .alert-info,
.dom-page > .alert-err + .alert-ok {
    margin-top: 0.5rem;
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; background: transparent !important; color: var(--text, #e8eef5) !important;
    border: 1px solid rgba(255,255,255,0.15) !important; border-radius: 8px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    font-family: inherit;
    text-decoration: none !important;
}
.btn-outline:hover {
    background: rgba(25,195,255,0.08) !important;
    border-color: rgba(25,195,255,0.35) !important;
    color: #19c3ff !important;
}

.child-ns-overview {
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
}

/* Ă˘â‚¬â€ťĂ˘â‚¬â€ť Private nameservers overview (client-facing, no technical jargon in copy) Ă˘â‚¬â€ťĂ˘â‚¬â€ť */
.hxo-child-ns-panel {
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(165deg, rgba(18,32,54,0.95) 0%, rgba(10,18,34,0.92) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.hxo-child-ns-head {
    padding: 1.35rem 2.25rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(25,195,255,0.03);
}
.hxo-child-ns-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.45rem;
}
.hxo-child-ns-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0f7fc !important;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hxo-child-ns-title i {
    color: #19c3ff;
    font-size: 1rem;
    opacity: 0.95;
}
.hxo-child-ns-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0c1524 !important;
    background: linear-gradient(135deg, #5ee4ff, #19c3ff);
    box-shadow: 0 2px 10px rgba(25,195,255,0.35);
}
.hxo-child-ns-sub {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #92aec9 !important;
    max-width: 52rem;
}
.hxo-child-ns-list-shell {
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 1.65rem;
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}
.hxo-child-ns-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.hxo-child-ns-item {
    margin: 0;
    padding: 0;
}
.hxo-child-ns-item-inner {
    display: grid;
    grid-template-columns: minmax(0, 140px) minmax(0, 1fr) minmax(0, 148px);
    gap: 1rem 1.35rem;
    align-items: start;
    padding: 1.15rem 1.5rem 1.15rem 1.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,18,34,0.65);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    border-left: 3px solid rgba(25,195,255,0.45);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.hxo-child-ns-item:hover .hxo-child-ns-item-inner {
    border-color: rgba(25,195,255,0.18);
    background: rgba(14,26,46,0.75);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hxo-child-ns-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.hxo-child-ns-block--fqdn {
    padding-right: 0.5rem;
}
.hxo-child-ns-block--ip {
    text-align: right;
    align-items: flex-end;
    align-self: center;
}
.hxo-child-ns-block-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b869e !important;
    line-height: 1.2;
}
.hxo-child-ns-fqdn {
    word-break: break-all;
    line-height: 1.45;
}
.hxo-child-ns-ip-val {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.84rem;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #e8eef5 !important;
}
.hxo-child-ns-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #c9ecff !important;
    background: rgba(25,195,255,0.12);
    border: 1px solid rgba(25,195,255,0.22);
}
.hxo-child-ns-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.84rem;
    color: #e8eef5 !important;
    letter-spacing: 0.02em;
}
.hxo-child-ns-ip-empty {
    color: #5a6d82 !important;
    font-size: 0.84rem;
    font-weight: 600;
}

/* SpaÄŚâ€şiu lateral interior Ă˘â‚¬â€ť specificitate peste clientarea / Bootstrap din WHMCS */
.dom-page .hxo-child-ns-panel > .hxo-child-ns-head {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}
.dom-page .hxo-child-ns-panel > .hxo-child-ns-list-shell {
    padding-top: 20px !important;
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}
.dom-page .hxo-child-ns-panel > .hxo-child-ns-empty {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}

.hxo-child-ns-empty {
    padding: 2.25rem 2.25rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hxo-child-ns-empty-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(25,195,255,0.08);
    border: 1px solid rgba(25,195,255,0.18);
    color: #19c3ff;
    font-size: 1.35rem;
}
.hxo-child-ns-empty-title {
    margin: 0 auto;
    max-width: 22rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #9fb8d2 !important;
    font-weight: 500;
}

@media (max-width: 720px) {
    .hxo-child-ns-head { padding: 1.15rem 1.2rem 1rem; }
    .hxo-child-ns-list-shell {
        padding-top: 20px;
        padding-bottom: 1.25rem;
        padding-left: 1.15rem !important;
        padding-right: 1.15rem !important;
    }
    .hxo-child-ns-item-inner {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        align-items: stretch;
        padding: 1.15rem 1.2rem;
    }
    .hxo-child-ns-block--ip {
        text-align: left;
        align-items: flex-start;
        align-self: stretch;
        padding-top: 0.35rem;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

/* ===== Register NS page â€” scoped overrides (Bootstrap / Nexus) ===== */
body.hxo-themed.page-clientareadomainregisterns .primary-content {
    background: transparent !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 2vw, 1rem) 2.5rem;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page > .alert-info,
body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page > .alert-ok,
body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page > .alert-err,
body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page > .alert-warn-ns {
    border-radius: 12px;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-actions {
    margin-top: 1.75rem;
}

body.hxo-themed.page-clientareadomainregisterns .extra-options-grid.hxo-registerns-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
}

body.hxo-themed.page-clientareadomainregisterns .extra-option.hxo-registerns-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: linear-gradient(165deg, rgba(18, 32, 54, 0.96) 0%, rgba(10, 18, 34, 0.92) 100%) !important;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32) !important;
    transform: none !important;
}

body.hxo-themed.page-clientareadomainregisterns .extra-option.hxo-registerns-card:hover {
    border-color: rgba(25, 195, 255, 0.22) !important;
    background: linear-gradient(165deg, rgba(22, 38, 62, 0.98) 0%, rgba(12, 22, 40, 0.94) 100%) !important;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38) !important;
    transform: translateY(-1px) !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card--danger:hover {
    border-color: rgba(248, 113, 113, 0.28) !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-title {
    font-size: 0.95rem !important;
    color: #f0f7fc !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-form label {
    color: #9fc0da !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-form .dom-input,
body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-form input[type="text"] {
    width: 100% !important;
    padding: 10px 14px !important;
    background: rgba(16, 26, 46, 0.92) !important;
    border: 1px solid rgba(25, 195, 255, 0.18) !important;
    border-radius: 8px !important;
    color: #e8eef5 !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-form .dom-input:focus,
body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-card-form input[type="text"]:focus {
    border-color: rgba(25, 195, 255, 0.45) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(25, 195, 255, 0.12) !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-ns-domain-suffix {
    flex-shrink: 0;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-submit.btn-prim {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 11px 18px !important;
    border: none !important;
    border-radius: 9px !important;
    background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 16px rgba(25, 195, 255, 0.28) !important;
    cursor: pointer !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-submit.btn-prim:hover {
    color: #fff !important;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-submit--danger.btn-danger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 11px 18px !important;
    border-radius: 9px !important;
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #f87171 !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: lowercase;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-submit--danger.btn-danger:hover {
    background: rgba(239, 68, 68, 0.18) !important;
    border-color: rgba(239, 68, 68, 0.55) !important;
    color: #fca5a5 !important;
}

body.hxo-themed.page-clientareadomainregisterns .hxo-registerns-page .card:not(.hxo-registerns-card) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    body.hxo-themed.page-clientareadomainregisterns .extra-options-grid.hxo-registerns-grid {
        grid-template-columns: 1fr !important;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== DNS Management (clientareadomaindns) ===== */
.dom-page {
    box-sizing: border-box;
    padding-bottom: 2rem;
    padding-left: clamp(0.75rem, 2.5vw, 1.5rem);
    padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.dom-page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.dom-page-title { font-size: 1.5rem; font-weight: 700; color: var(--hx-text) !important; margin: 0 0 0.2rem; }
.dom-page-sub { font-size: 0.9rem; color: var(--text-muted) !important; margin: 0; }

.dom-card {
    background: var(--card-bg, rgba(13,24,41,0.85));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 1.75rem; margin-bottom: 1.5rem;
}
.dom-card-title {
    font-size: 0.9375rem; font-weight: 600; color: #e8eef5 !important;
    margin-bottom: 1.25rem; padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 8px;
}
.dom-card-title i { color: #19c3ff; }

.dom-row { margin-bottom: 1.1rem; }
.dom-label { font-size: 0.8125rem; font-weight: 600; color: #6b7e95 !important; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.dom-value { font-size: 0.9375rem; color: #e8eef5 !important; font-weight: 500; }

.dom-input, .dom-select {
    width: 100%; padding: 10px 14px;
    background: rgba(16,26,46,0.9) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 8px; color: #e8eef5 !important;
    font-family: inherit; font-size: 0.9rem;
    outline: none; box-sizing: border-box; transition: border-color 0.2s;
}
.dom-input:focus, .dom-select:focus { border-color: rgba(25,195,255,0.4) !important; }
.dom-input::placeholder { color: rgba(107,126,149,0.4) !important; }
.dom-select option { background: #0d1829 !important; }

.btn-prim {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 8px;
    background: linear-gradient(135deg,#19c3ff,#0ea5e9);
    color: #fff !important; border: none; font-weight: 700; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(25,195,255,0.25);
    font-family: inherit;
}
.btn-prim:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(25,195,255,0.4); color: #fff !important; }
.btn-sec {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; border-radius: 8px;
    background: transparent; color: #6b7e95 !important;
    border: 1px solid rgba(255,255,255,0.1); font-weight: 600; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important; font-family: inherit;
}
.btn-sec:hover { border-color: rgba(25,195,255,0.3); color: #19c3ff !important; }
.btn-danger {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; border-radius: 8px;
    background: rgba(239,68,68,0.1); color: #ef4444 !important;
    border: 1px solid rgba(239,68,68,0.25); font-weight: 600; font-size: 0.875rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none !important; font-family: inherit;
}
.btn-danger:hover { background: rgba(239,68,68,0.2); }

.alert-ok { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80 !important; font-size: 0.875rem; margin-bottom: 1.25rem; }
.alert-err { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5 !important; font-size: 0.875rem; margin-bottom: 1.25rem; }
.alert-info { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; border-radius: 9px; background: rgba(25,195,255,0.08); border: 1px solid rgba(25,195,255,0.2); color: #19c3ff !important; font-size: 0.875rem; margin-bottom: 1.25rem; }

.badge-active { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #22c55e !important; }
.badge-expired { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #ef4444 !important; }
.badge-pending { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.3); color: #eab308 !important; }

.dom-nav-back { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 8px; background: rgba(25,195,255,0.08); border: 1px solid rgba(25,195,255,0.2); color: #19c3ff !important; text-decoration: none !important; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; margin-bottom: 1.5rem; display: inline-flex; }
.dom-nav-back:hover { background: rgba(25,195,255,0.15); color: #19c3ff !important; }

table.dom-table { width: 100%; border-collapse: collapse; }
table.dom-table th { color: #6b7e95 !important; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); background: rgba(25,195,255,0.04); }
table.dom-table td { color: #e8eef5 !important; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
table.dom-table tr:last-child td { border-bottom: none; }
table.dom-table tr:hover td { background: rgba(25,195,255,0.03); }

.ns-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; align-items: center; }
.ns-row .dom-input { flex: 1; }
.ns-num { width: 28px; flex-shrink: 0; font-size: 0.8125rem; color: #6b7e95 !important; font-weight: 600; text-align: center; }

/* Ă˘â‚¬â€ťĂ˘â‚¬â€ť DNS Management: card, tabel, CTA Ă˘â‚¬â€ťĂ˘â‚¬â€ť */
.hxo-dns-inline {
    position: relative;
    z-index: 35;
}
.hxo-dns-page-shell {
    overflow: visible !important;
    padding: 1.65rem 1.75rem !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: linear-gradient(165deg, rgba(16, 28, 48, 0.94) 0%, rgba(8, 14, 26, 0.9) 100%) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hxo-dns-lead {
    margin-bottom: 1.25rem;
}
.hxo-dns-lead__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hx-text) !important;
    letter-spacing: -0.02em;
}
.hxo-dns-lead__title i {
    color: #19c3ff !important;
    font-size: 1.05rem;
}
.hxo-dns-lead__desc {
    margin: 0;
    padding: 0.95rem 1.1rem;
    border-radius: 10px;
    background: rgba(8, 18, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #b3cbdf !important;
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 48rem;
}
.hxo-dns-form {
    margin-top: 0.25rem;
}
/* overflow vizibil: altfel lista <select> e tĂ„ÂiatĂ„Â de Ă˘â‚¬Ĺľscroll containerĂ˘â‚¬ĹĄ (overflow-x: auto) */
.hxo-dns-table-wrap {
    overflow: visible;
    margin: 0.15rem 0 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(6, 14, 28, 0.45);
    box-shadow: none;
    position: relative;
    z-index: 40;
    isolation: isolate;
}
.hxo-dns-bulk-actions {
    margin: 0.85rem 0 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.hxo-dns-bulk-actions .hxo-dns-delete-all-btn {
    font-size: 0.8125rem;
    border-color: rgba(239, 68, 68, 0.35);
    color: #fca5a5 !important;
}
.hxo-dns-bulk-actions .hxo-dns-delete-all-btn:hover {
    border-color: rgba(239, 68, 68, 0.55);
    background: rgba(239, 68, 68, 0.1) !important;
    color: #fecaca !important;
}
/* Pe ecrane Ä‚Â®nguste, scroll orizontal pe paginĂ„Â (nu pe wrapper-ul tabelului Ă˘â‚¬â€ť altfel se taie <select>) */
@media (max-width: 720px) {
    .dom-page.hxo-dns-page {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    table.hxo-dns-table {
        min-width: 740px;
    }
}
table.hxo-dns-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}
/* Host | Type | TTL | Address | Priority | Actions */
table.hxo-dns-table thead th:nth-child(1) {
    width: 15%;
}
table.hxo-dns-table thead th:nth-child(2) {
    width: 19%;
}
table.hxo-dns-table thead th:nth-child(3) {
    width: 9%;
}
table.hxo-dns-table thead th:nth-child(4) {
    width: 30%;
}
table.hxo-dns-table thead th:nth-child(5) {
    width: 11%;
}
table.hxo-dns-table thead th:nth-child(6) {
    width: 3.25rem;
    min-width: 3.25rem;
}
/* Nu ridicĂ„Âm Ä‚Â®ntregul tr la focus Ă˘â‚¬â€ť altfel rÄ‚Ëndul Ă˘â‚¬Ĺľde josĂ˘â‚¬Ĺ› poate acoperi butoanele din rÄ‚Ëndul de deasupra.
   RidicĂ„Âm doar celula cu <select>, ca lista sĂ„Â nu fie tĂ„ÂiatĂ„Â fĂ„ÂrĂ„Â sĂ„Â schimbĂ„Âm ordinea de hit-test pe tot rÄ‚Ëndul. */
table.hxo-dns-table tbody tr {
    position: relative;
    z-index: 0;
}
table.hxo-dns-table tbody tr:focus-within .hxo-dns-col-type {
    position: relative;
    z-index: 5;
}
/* Antet tip Ă˘â‚¬ĹľBootstrap tableĂ˘â‚¬ĹĄ: bold, fĂ„ÂrĂ„Â caps agresive, doar linie sub antet */
table.hxo-dns-table thead th {
    padding: 0.95rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    color: #b6c8dc !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
    border-right: none !important;
    white-space: nowrap;
    text-align: left;
    vertical-align: middle;
}
table.hxo-dns-table thead th:nth-child(3),
table.hxo-dns-table thead th:nth-child(5),
table.hxo-dns-table thead th.hxo-dns-col-actions-h {
    text-align: center;
}
/* Corp: doar linii orizontale, fĂ„ÂrĂ„Â colÄŚâ€şuri de grilĂ„Â Ä‚Â®ntre coloane */
table.hxo-dns-table tbody td {
    padding: 0.95rem 1.15rem !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    vertical-align: middle !important;
    background: transparent;
}
table.hxo-dns-table tbody tr:hover td {
    background: rgba(25, 195, 255, 0.04) !important;
}
table.hxo-dns-table tbody tr:last-child td {
    border-bottom: none !important;
}
table.hxo-dns-table tbody td:nth-child(3) {
    text-align: center;
}
table.hxo-dns-table tbody td.hxo-dns-col-priority {
    text-align: center;
    font-size: 0.875rem;
    color: #95adc6 !important;
}
/* Record type: select lat ca Ä‚Â®n stock, lista deschisĂ„Â deasupra rÄ‚Ëndurilor (vezi z-index pe tr) */
.hxo-dns-col-type .hxo-dns-type-select {
    width: 100%;
    min-width: 11.5rem;
    max-width: 100%;
}
.hxo-dns-col-ttl .hxo-dns-ttl-readonly {
    display: inline-block;
    min-width: 3.25rem;
    padding: 9px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 18, 32, 0.55);
    color: #b8ccdf !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}
.hxo-dns-col-ttl .hxo-dns-ttl-readonly--muted {
    color: #7a93ad !important;
}
.hxo-dns-host-input {
    min-width: 6.5rem;
    width: 100%;
}
.hxo-dns-address-input {
    min-width: 10rem;
    width: 100%;
}
.hxo-dns-col-priority .hxo-dns-priority-input {
    width: 4.25rem;
    max-width: 100%;
    text-align: center;
}
.hxo-dns-col-actions {
    width: 3.25rem;
    text-align: center !important;
    vertical-align: middle !important;
    padding-left: 0.5rem !important;
    padding-right: 0.75rem !important;
    position: relative;
    z-index: 6;
    pointer-events: auto;
}
/* RÄ‚Ënduri existente: coloana acÄŚâ€şiuni deasupra oricĂ„Ârui strat din tabel */
table.hxo-dns-table tbody tr.hxo-dns-row-existing td.hxo-dns-col-actions {
    z-index: 24;
}
/* Celula goalĂ„Â pe rÄ‚Ëndul Ă˘â‚¬ĹľadaugĂ„ÂĂ˘â‚¬ĹĄ: fĂ„ÂrĂ„Â pointer-events:none (evitĂ„Â bug-uri de hit-test pe unele browsere) */
.hxo-dns-col-actions--blank {
    background: transparent;
}
.hxo-dns-del-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #94a8bc !important;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.hxo-dns-del-btn:hover {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5 !important;
}
.hxo-dns-del-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}
.hxo-dns-del-btn i {
    font-size: 0.85rem;
}
/* CÄ‚Ëmpuri ca Ä‚Â®n referinÄŚâ€şa WHMCS: border subtil, colÄŚâ€şuri mici */
.hxo-dns-table .dom-input,
.hxo-dns-table .dom-select {
    min-height: 40px;
    font-size: 0.875rem !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(10, 18, 32, 0.85) !important;
    padding: 9px 12px !important;
}
.hxo-dns-table .dom-input:focus,
.hxo-dns-table .dom-select:focus {
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 1px rgba(25, 195, 255, 0.15);
}
/* Editare sigurĂ„Â: unele straturi/global JS pot Ä‚Â®mpiedica focus Ă˘â‚¬â€ť forÄŚâ€şĂ„Âm interacÄŚâ€şiunea nativĂ„Â */
.hxo-dns-inline .hxo-dns-table input.dom-input,
.hxo-dns-inline .hxo-dns-table select.dom-select {
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-user-select: text;
    user-select: text;
}
.hxo-dns-footnote {
    text-align: right;
    margin: 0.6rem 0 1.1rem;
    font-size: 0.78rem;
    color: #6b869e !important;
    line-height: 1.4;
}
.hxo-dns-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding-top: 0.35rem;
}
/* Save / Cancel Ă˘â‚¬â€ť layout ca WHMCS: primar plin, secundar outline */
.hxo-dns-inline .btn-prim,
.hxo-dns-inline .btn-prim.hxo-dns-btn-save {
    background: #0ea5e9 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}
.hxo-dns-inline .btn-prim:hover {
    background: #0284c7 !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35) !important;
    transform: translateY(-1px);
}
.hxo-dns-inline .btn-sec {
    color: #c5d4e3 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
}
.hxo-dns-inline .btn-sec:hover {
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #e8eef5 !important;
    background: rgba(255, 255, 255, 0.07) !important;
}

/* Conflict resolver: URL/FRAME vs A/MX pe acelaÄŚâ„˘i host */
.hxo-dns-conflict-bar {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.09);
    border: 1px solid rgba(234, 179, 8, 0.35);
}
.hxo-dns-conflict-bar__intro {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #fcd34d !important;
}
.hxo-dns-conflict-bar__intro i {
    margin-right: 0.45rem;
    opacity: 0.9;
}
.hxo-dns-conflict-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.hxo-dns-conflict-bar__actions .btn-sec {
    font-size: 0.8rem;
    padding: 8px 12px;
}

/* ===== Domain contacts (clientareadomaincontactinfo) â€” Hoxta UI ===== *//**
 * Contacte domeniu Ă˘â‚¬â€ť UI Ă˘â‚¬ĹľdashboardĂ˘â‚¬ĹĄ (taburi segment, grid, etichete moderne).
 * Scop: fĂ„ÂrĂ„Â responsive-tabs-sm (necesitĂ„Â theme.css), taburi reale + stil Hoxta.
 */

.hxo-contact-page.dom-page {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3rem;
    box-sizing: border-box;
}

.hxo-contact-page .dom-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}
.hxo-contact-page .dom-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text) !important;
    margin: 0 0 0.3rem;
    letter-spacing: -0.03em;
}
.hxo-contact-page .dom-page-sub {
    font-size: 0.95rem;
    color: var(--text-muted) !important;
    margin: 0;
    font-weight: 500;
}

/* Hero Ă˘â‚¬â€ť titlu + domeniu */
.hxo-contact-hero {
    margin-bottom: 1.75rem !important;
}
.hxo-contact-hero__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
}
.hxo-contact-hero__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(25, 195, 255, 0.2), rgba(25, 195, 255, 0.06));
    border: 1px solid rgba(25, 195, 255, 0.35);
    color: #19c3ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hxo-contact-hero__sub {
    margin-top: 0.65rem !important;
}
.hxo-contact-domain-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    color: #d4e8fb !important;
    background: rgba(25, 195, 255, 0.08);
    border: 1px solid rgba(25, 195, 255, 0.22);
}

.hxo-contact-page .dom-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 11px;
    background: rgba(25, 195, 255, 0.09);
    border: 1px solid rgba(25, 195, 255, 0.22);
    color: #19c3ff !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.hxo-contact-page .dom-nav-back:hover {
    background: rgba(25, 195, 255, 0.16);
    border-color: rgba(25, 195, 255, 0.38);
}

/* Card */
.hxo-contact-card.card {
    border-radius: 18px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.hxo-contact-card-body.card-body {
    padding: 2rem 2rem 1.75rem !important;
}

.hxo-contact-lead {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 1.15rem 1.35rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #b9d4ef !important;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.09), rgba(25, 195, 255, 0.03));
    border: 1px solid rgba(25, 195, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.hxo-contact-lead__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
    border-radius: 12px;
    background: rgba(25, 195, 255, 0.12);
    border: 1px solid rgba(25, 195, 255, 0.28);
    color: #19c3ff;
    font-size: 1.05rem;
}
.hxo-contact-lead__text {
    flex: 1;
    min-width: 0;
}
.hxo-contact-lead__text p {
    margin: 0;
}

/* Panouri secÄŚâ€şiuni */
.hxo-contact-panel {
    margin-bottom: 1.75rem;
}

/* :last-of-type pe .hxo-contact-panel lovea greÄŚâ„˘it div-ul sursĂ„Â (ultimul div Ä‚Â®nainte de <section>) Ă˘â‚¬â€ť Ä‚Â®i ÄŚâ„˘tergea margin-bottom */
.hxo-contact-single-visible > .hxo-contact-panel--fields:last-child {
    margin-bottom: 0;
}

.hxo-contact-panel--source {
    margin-bottom: 2.75rem;
}

/* Bulk contactinfo: fĂ„ÂrĂ„Â panou Ă˘â‚¬â€ť spaÄŚâ€şiu Ä‚Â®ntre sursĂ„Â ÄŚâ„˘i grid cÄ‚Ëmpuri */
.hxo-contact-single-visible > .hxo-contact-source {
    margin-bottom: 2.75rem;
}
.hxo-contact-panel--fields {
    margin-top: 0.35rem;
    padding-top: 0.25rem;
}

.hxo-contact-panel--fields .hxo-contact-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hxo-contact-panel__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(25, 195, 255, 0.1);
    border: 1px solid rgba(25, 195, 255, 0.26);
    color: #19c3ff;
    font-size: 1.1rem;
}
.hxo-contact-panel__title {
    margin: 0 !important;
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    color: #eef4fb !important;
    line-height: 1.35;
}
.hxo-contact-panel__head-text {
    min-width: 0;
}

/* Formular simplu (fĂ„ÂrĂ„Â taburi): roluri duplicate ascunse pentru POST WHMCS */
.hxo-contact-page--simple .hxo-contact-card-body {
    position: relative;
}
.hxo-contact-role-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.hxo-contact-page--simple .hxo-bulk-card .card-body {
    position: relative;
}

/* Ă˘â‚¬â€ťĂ˘â‚¬â€ť Tab strip (segment control), nu listĂ„Â cu puncte Ă˘â‚¬â€ťĂ˘â‚¬â€ť */
.hxo-contact-tabstrip {
    margin: 0 0 -1px;
    padding: 0.35rem;
    background: rgba(5, 10, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 0 0;
    border-bottom: none;
}

.hxo-contact-page .hxo-contact-nav.nav-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: none !important;
}

.hxo-contact-page .hxo-contact-nav .nav-item {
    list-style: none !important;
    margin: 0 !important;
}

.hxo-contact-page .hxo-contact-nav .nav-link {
    display: inline-block !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    padding: 0.55rem 1.05rem !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #95adc6 !important;
    background: transparent !important;
    margin: 0 !important;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.hxo-contact-page .hxo-contact-nav .nav-link:hover {
    color: #d4e8fb !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.hxo-contact-page .hxo-contact-nav .nav-link.active {
    color: #f0f7fd !important;
    background: rgba(25, 195, 255, 0.18) !important;
    border-color: rgba(25, 195, 255, 0.42) !important;
}

@media (max-width: 575px) {
    .hxo-contact-tabstrip {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    .hxo-contact-page .hxo-contact-nav.nav-tabs {
        flex-wrap: nowrap !important;
        min-width: min-content;
    }
}

.hxo-contact-tab-content.tab-content {
    padding: 1.5rem 1.35rem 1.65rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 0 16px 16px;
    background: rgba(6, 11, 22, 0.5);
}

/* Un singur panou vizibil Ă˘â‚¬â€ť restabileÄŚâ„˘te comportamentul Bootstrap dacĂ„Â alte fiÄŚâ„˘iere suprascriu .tab-pane */
.hxo-contact-page .hxo-contact-tab-content > .tab-pane:not(.active) {
    display: none !important;
}
.hxo-contact-page .hxo-contact-tab-content > .tab-pane.active {
    display: block !important;
}

/* Antet rol + copiere */
.hxo-contact-role-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hxo-contact-role-head__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.hxo-contact-role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.12);
    border: 1px solid rgba(25, 195, 255, 0.28);
    color: #19c3ff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hxo-contact-role-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #eef4fb !important;
}

.hxo-contact-copy-btn {
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.8125rem !important;
    padding: 0.45rem 0.95rem !important;
    border: 1px solid rgba(25, 195, 255, 0.38) !important;
    background: rgba(25, 195, 255, 0.1) !important;
    color: #a8e9ff !important;
    transition: background 0.15s, border-color 0.15s;
}
.hxo-contact-copy-btn:hover {
    background: rgba(25, 195, 255, 0.18) !important;
    border-color: rgba(25, 195, 255, 0.55) !important;
    color: #e8f9ff !important;
}

/* SursĂ„Â contact Ă˘â‚¬â€ť carduri Ä‚Â®n grid */
.hxo-contact-source {
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.hxo-contact-source__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hxo-contact-source__grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 1.15rem;
        align-items: stretch;
    }
}

.hxo-contact-source__card {
    padding: 1.2rem 1.25rem;
    border-radius: 14px;
    background: rgba(12, 22, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hxo-contact-source__card:focus-within {
    border-color: rgba(25, 195, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(25, 195, 255, 0.12);
}

.hxo-contact-source__card--custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hxo-contact-source__card .form-control,
.hxo-contact-source__card .custom-select {
    width: 100% !important;
}

.hxo-contact-source__row {
    margin-bottom: 0.7rem !important;
}

.hxo-contact-source__row--flush {
    margin-bottom: 0 !important;
}

.hxo-contact-source__label {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0 !important;
    font-size: 0.92rem;
    font-weight: 600;
    color: #e4eef8 !important;
    cursor: pointer;
    line-height: 1.5;
}

.hxo-contact-source__radio-input {
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 !important;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.hxo-contact-source__knob {
    position: relative;
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 2px solid rgba(25, 195, 255, 0.92);
    background: radial-gradient(circle at 40% 35%, rgba(15, 35, 55, 0.98), rgba(4, 10, 22, 0.99));
    box-shadow:
        0 0 0 1px rgba(25, 195, 255, 0.18),
        0 0 10px rgba(25, 195, 255, 0.45),
        0 0 22px rgba(25, 195, 255, 0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
    pointer-events: none;
}

.hxo-contact-source__knob::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin: -0.25rem 0 0 -0.25rem;
    border-radius: 50%;
    background: #19c3ff;
    box-shadow: 0 0 10px rgba(25, 195, 255, 0.95), 0 0 18px rgba(25, 195, 255, 0.5);
    opacity: 0;
    transform: scale(0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hxo-contact-source__radio-input:checked + .hxo-contact-source__knob {
    border-color: rgba(120, 230, 255, 0.95);
    box-shadow:
        0 0 0 1px rgba(25, 195, 255, 0.42),
        0 0 14px rgba(25, 195, 255, 0.65),
        0 0 28px rgba(25, 195, 255, 0.35);
}

.hxo-contact-source__radio-input:checked + .hxo-contact-source__knob::after {
    opacity: 1;
    transform: scale(1);
}

.hxo-contact-source__radio-input:focus-visible + .hxo-contact-source__knob {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(25, 195, 255, 0.95),
        0 0 0 4px rgba(7, 14, 26, 0.95),
        0 0 12px rgba(25, 195, 255, 0.5);
}

.hxo-contact-source__label-text {
    flex: 1;
    min-width: 0;
}

.hxo-contact-source__select {
    margin: 0.85rem 0 0 0;
    max-width: none;
}

@media (max-width: 767px) {
    .hxo-contact-source__select {
        margin-top: 0.75rem;
    }
}

/*
 * Ă˘â‚¬ĹľChoose contactĂ˘â‚¬ĹĄ Ă˘â‚¬â€ť acelaÄŚâ„˘i limbaj ca hxo-global-select (Related Service): text centrat, alb, chenar cyan.
 * Fallback pentru native select Ä‚Â®nainte de JS; :disabled rĂ„ÂmÄ‚Ëne nativ (enhancement este eliminat de script).
 */
.hxo-contact-page .hxo-contact-source__select .hxo-contact-field-label {
    color: #e4eef8 !important;
}

.hxo-contact-page .hxo-contact-source__select select.form-control.custom-select,
.hxo-contact-page .hxo-contact-source__select select.form-control {
    text-align: center !important;
    font-weight: 700 !important;
    color: #e8eef5 !important;
    -webkit-text-fill-color: #e8eef5 !important;
}

.hxo-contact-page .hxo-contact-source__select select.form-control option {
    text-align: center !important;
}

/*
 * Select dezactivat (ex.: Ă˘â‚¬Ĺľcustom contactĂ˘â‚¬ĹĄ bifat): UI nativ Windows Ă˘â‚¬â€ť suprascriem ca hxo-gs-trigger.
 */
.hxo-contact-page .hxo-contact-source__select select.form-control:disabled,
.hxo-contact-page .hxo-contact-source__select select.form-control.custom-select:disabled {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: rgba(25, 195, 255, 0.06) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319c3ff' d='M6 8.2L1.2 3.4h9.6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.78rem center !important;
    background-size: 0.66rem !important;
    border: 1.5px solid rgba(25, 195, 255, 0.34) !important;
    border-radius: 12px !important;
    color: #e8eef5 !important;
    -webkit-text-fill-color: #e8eef5 !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    text-align: center !important;
    line-height: 1.35 !important;
    min-height: 44px !important;
    padding: 0.65rem 2.4rem 0.65rem 0.9rem !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    color-scheme: dark !important;
    box-shadow: none !important;
}

/* Dropdown custom deschis Ă˘â‚¬â€ť deasupra cardului contact */
.hxo-contact-page .hxo-contact-source__select .hxo-gs-wrap.open {
    z-index: 12050;
}

/* Etichete cÄ‚Ëmpuri Ă˘â‚¬â€ť fĂ„ÂrĂ„Â ALL CAPS agresiv */
.hxo-contact-field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #a7bdd4 !important;
    margin-bottom: 0.42rem !important;
}

/* Grid cÄ‚Ëmpuri */
.hxo-contact-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 1.5rem;
}

@media (min-width: 576px) {
    .hxo-contact-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .hxo-contact-fields {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hxo-contact-panel--fields .hxo-contact-fields {
    padding-top: 0.15rem;
}

.hxo-contact-fields .form-group {
    margin-bottom: 0 !important;
}

/* Telefon / linie unicĂ„Â orfanĂ„Â Ă˘â‚¬â€ť lĂ„ÂÄŚâ€şime controlatĂ„Â */
.hxo-contact-field--full {
    grid-column: 1 / -1;
}

.hxo-contact-field--full .hxo-contact-input {
    max-width: min(100%, 22rem);
}

.hxo-contact-input.form-control,
.hxo-contact-page .hxo-contact-input {
    min-height: 2.85rem;
    padding: 0.6rem 0.95rem !important;
    font-size: 0.9375rem !important;
    border-radius: 11px !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    background: rgba(10, 18, 34, 0.94) !important;
    color: #f2f7fc !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.hxo-contact-input.form-control:focus {
    border-color: rgba(25, 195, 255, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(25, 195, 255, 0.12) !important;
    outline: none !important;
}

/* Footer */
.hxo-contact-footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 575px) {
    .hxo-contact-footer-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        justify-content: stretch;
    }
    .hxo-contact-footer-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.hxo-contact-footer-actions .btn-primary.hxo-contact-btn-save {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem !important;
    font-weight: 700 !important;
    border-radius: 11px !important;
    box-shadow: 0 8px 24px rgba(25, 195, 255, 0.22);
}

.hxo-contact-footer-actions .btn-default {
    border-radius: 11px !important;
    padding: 0.55rem 1.25rem !important;
    font-weight: 600 !important;
}

.hxo-contact-page .hxo-alert,
.hxo-contact-page .alert {
    margin-bottom: 1rem !important;
}

@media (max-width: 767px) {
    .hxo-contact-tab-content.tab-content {
        padding: 1.15rem 1rem 1.35rem !important;
    }
    .hxo-contact-role-head {
        flex-direction: column;
        align-items: stretch;
    }
    .hxo-contact-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ă˘â‚¬â€ťĂ˘â‚¬â€ť Modal IRTP (Important reminder / transfer lock) Ă˘â‚¬â€ťĂ˘â‚¬â€ť aliniat lĂ„ÂÄŚâ€şimii paginii contact */
/* Fallback fĂ„ÂrĂ„Â JS: aceeaÄŚâ„˘i plajĂ„Â ca formularul; la deschidere, scriptul potriveÄŚâ„˘te exact la .hxo-contact-card */
.hxo-irtp-modal .modal-dialog.hxo-irtp-modal__dialog {
    max-width: min(1100px, calc(100vw - 2.5rem)) !important;
    width: calc(100% - 1.25rem) !important;
    margin: 1rem auto !important;
    transition: transform 0.15s ease-out;
}

.hxo-irtp-modal .hxo-irtp-modal__shell.modal-content {
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: linear-gradient(165deg, rgba(14, 22, 42, 0.98), rgba(8, 12, 24, 0.99)) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(25, 195, 255, 0.06) inset !important;
    overflow: hidden;
}

.hxo-irtp-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.07), transparent);
}

.hxo-irtp-modal__head-main {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.hxo-irtp-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(25, 195, 255, 0.14);
    border: 1px solid rgba(25, 195, 255, 0.35);
    color: #19c3ff;
    font-size: 1.05rem;
}

.hxo-irtp-modal__title.modal-title {
    margin: 0 !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    color: #f0f7fd !important;
    line-height: 1.35;
}

.hxo-irtp-modal__body.modal-body {
    padding: 1.75rem 2rem 1.5rem !important;
    text-align: left !important;
}

.hxo-irtp-modal__notice {
    margin-bottom: 1.35rem;
    padding: 1.15rem 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.09), rgba(25, 195, 255, 0.03));
    border: 1px solid rgba(25, 195, 255, 0.16);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hxo-irtp-modal__notice-text {
    margin: 0 !important;
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    color: #c5dff5 !important;
}

.hxo-irtp-modal__panel {
    margin-bottom: 1.25rem;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    background: rgba(12, 22, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hxo-irtp-modal__opt-label {
    position: relative;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.85rem !important;
    margin: 0 !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem !important;
    color: #dce9f5 !important;
    line-height: 1.45;
    padding-left: 0;
}

/* Checkbox nativ invizibil Ă˘â‚¬â€ť zona de click peste Ă˘â‚¬ĹľbulinĂ„ÂĂ˘â‚¬ĹĄ */
.hxo-irtp-modal__checkbox-input {
    position: absolute;
    top: 0.08rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 !important;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

/* BulinĂ„Â cyan: inel + glow (captura 1); umplere la bifat */
.hxo-irtp-modal__opt-knob {
    position: relative;
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    margin-top: 0.12rem;
    border-radius: 50%;
    border: 2px solid rgba(25, 195, 255, 0.92);
    background: radial-gradient(circle at 40% 35%, rgba(15, 35, 55, 0.98), rgba(4, 10, 22, 0.99));
    box-shadow:
        0 0 0 1px rgba(25, 195, 255, 0.18),
        0 0 10px rgba(25, 195, 255, 0.45),
        0 0 22px rgba(25, 195, 255, 0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
    pointer-events: none;
}

.hxo-irtp-modal__opt-knob::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin: -0.25rem 0 0 -0.25rem;
    border-radius: 50%;
    background: #19c3ff;
    box-shadow: 0 0 10px rgba(25, 195, 255, 0.95), 0 0 18px rgba(25, 195, 255, 0.5);
    opacity: 0;
    transform: scale(0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hxo-irtp-modal__checkbox-input:checked + .hxo-irtp-modal__opt-knob {
    border-color: rgba(120, 230, 255, 0.95);
    box-shadow:
        0 0 0 1px rgba(25, 195, 255, 0.42),
        0 0 14px rgba(25, 195, 255, 0.65),
        0 0 28px rgba(25, 195, 255, 0.35);
}

.hxo-irtp-modal__checkbox-input:checked + .hxo-irtp-modal__opt-knob::after {
    opacity: 1;
    transform: scale(1);
}

.hxo-irtp-modal__checkbox-input:focus-visible + .hxo-irtp-modal__opt-knob {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(25, 195, 255, 0.95),
        0 0 0 4px rgba(7, 14, 26, 0.95),
        0 0 12px rgba(25, 195, 255, 0.5);
}

.hxo-irtp-modal__opt-text {
    flex: 1;
    min-width: 0;
}

.hxo-irtp-modal__field {
    margin-top: 0.25rem;
}

.hxo-irtp-modal__field-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0;
    color: #a7bdd4 !important;
    text-transform: none;
}

.hxo-irtp-modal__input.form-control {
    width: 100% !important;
    max-width: none !important;
    padding: 0.65rem 0.9rem !important;
    border-radius: 11px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(10, 18, 34, 0.94) !important;
    color: #f2f7fc !important;
    font-size: 0.9375rem !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.hxo-irtp-modal__input.form-control:focus {
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 4px rgba(25, 195, 255, 0.12) !important;
    outline: none !important;
}

.hxo-irtp-modal__foot.modal-footer {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end !important;
    gap: 0.85rem !important;
    padding: 1.25rem 2rem 1.75rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: rgba(5, 10, 20, 0.45) !important;
}

.hxo-irtp-modal__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    border-radius: 11px !important;
    min-height: 2.65rem;
}

.hxo-irtp-modal__btn--ghost.btn-default {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #b9cfe4 !important;
}

.hxo-irtp-modal__btn--ghost.btn-default:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #eef6fc !important;
}

.hxo-irtp-modal__btn--primary.btn-primary {
    background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(25, 195, 255, 0.28) !important;
}

.hxo-irtp-modal__btn--primary.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 26px rgba(25, 195, 255, 0.38) !important;
}

@media (max-width: 575px) {
    .hxo-irtp-modal__head {
        padding: 1.25rem 1.15rem 1rem;
    }
    .hxo-irtp-modal__body.modal-body {
        padding: 1.35rem 1.15rem 1.25rem !important;
    }
    .hxo-irtp-modal__foot.modal-footer {
        padding: 1rem 1.15rem 1.35rem !important;
    }
}

@media (max-width: 480px) {
    .hxo-irtp-modal__foot.modal-footer {
        flex-direction: column-reverse;
        align-items: stretch !important;
    }
    .hxo-irtp-modal__btn {
        width: 100%;
    }
}

body.hxo-themed.page-clientareadomaincontacts .hxo-contact-page .form-control,
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-page .custom-select,
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-input {
    background: rgba(10, 18, 34, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    color: #f2f7fc !important;
    -webkit-text-fill-color: #f2f7fc !important;
}
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-page .iti input,
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-page .iti__tel-input {
    background: rgba(10, 18, 34, 0.94) !important;
    color: #f2f7fc !important;
}
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-page > .hxo-domain-flash--success {
    margin-bottom: 1.25rem !important;
}
body.hxo-themed.page-clientareadomaincontacts .hxo-contact-alert.alert {
    border-radius: 12px !important;
    background: rgba(12, 22, 42, 0.85) !important;
    border: 1px solid rgba(25, 195, 255, 0.2) !important;
    color: #d4e8fb !important;
}
body.hxo-themed.page-clientareadomaincontacts .responsive-tabs-sm-connector {
    display: none !important;
}

/* â€”â€”â€” Get EPP Code (clientareadomaingetepp) â€”â€”â€” */
body.hxo-themed.page-clientareadomaingetepp .main-content .card:not(.glass-card),
body.hxo-themed.page-clientareadomaingetepp .main-content > .alert {
    display: none !important;
}

.hxo-epp-page.domain-detail-page {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3rem;
    box-sizing: border-box;
}

.hxo-epp-page .hxo-epp-back.dom-nav-back,
.hxo-epp-page .dom-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 11px;
    background: rgba(25, 195, 255, 0.09);
    border: 1px solid rgba(25, 195, 255, 0.22);
    color: #19c3ff !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
}

.hxo-epp-page .hxo-epp-back.dom-nav-back:hover,
.hxo-epp-page .dom-nav-back:hover {
    background: rgba(25, 195, 255, 0.16);
    border-color: rgba(25, 195, 255, 0.38);
    color: #19c3ff !important;
}

.hxo-epp-hero {
    margin-bottom: 1.75rem !important;
}

.hxo-epp-hero__title,
.hxo-epp-page .domain-detail-title.hxo-epp-hero__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--hx-text, #e8eef5) !important;
    margin: 0 0 0.3rem;
}

.hxo-epp-hero__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(25, 195, 255, 0.2), rgba(25, 195, 255, 0.06));
    border: 1px solid rgba(25, 195, 255, 0.35);
    color: #19c3ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hxo-epp-hero__sub {
    margin-top: 0.65rem !important;
}

.hxo-epp-domain-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    color: #d4e8fb !important;
    background: rgba(25, 195, 255, 0.08);
    border: 1px solid rgba(25, 195, 255, 0.22);
}

.hxo-epp-page .mgmt-quick-links {
    margin-bottom: 1.5rem;
}

.hxo-epp-flash {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.hxo-epp-flash i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.hxo-epp-flash--error {
    border: 1px solid rgba(248, 113, 113, 0.38);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.22), rgba(12, 22, 38, 0.72));
    color: #fecaca !important;
}

.hxo-epp-flash--error i {
    color: #f87171;
}

.hxo-epp-flash--info {
    border: 1px solid rgba(25, 195, 255, 0.28);
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.12), rgba(12, 22, 38, 0.72));
    color: #d4e8fb !important;
}

.hxo-epp-flash--info i {
    color: #19c3ff;
}

.hxo-epp-card.glass-card {
    border-radius: 18px !important;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hxo-epp-card-body.card-body {
    padding: 2rem 2rem 1.75rem !important;
}

.hxo-epp-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hxo-epp-card-head__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: rgba(25, 195, 255, 0.1);
    border: 1px solid rgba(25, 195, 255, 0.28);
    color: #19c3ff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hxo-epp-card-head__text {
    min-width: 0;
}

.hxo-epp-card-head__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #e8eef5 !important;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.hxo-epp-card-head__meta {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #8fa9c4 !important;
    margin: 0;
}

.hxo-epp-intro {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #b9d4ef !important;
    margin: 0 0 1.5rem;
}

.hxo-epp-code-lead {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #d4e8fb !important;
    margin: 0 0 0.75rem;
}

.hxo-epp-code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-input.form-control {
    flex: 1 1 220px;
    min-width: 0;
    min-height: 2.85rem;
    padding: 0.65rem 1rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #e8eef5 !important;
    background: rgba(9, 18, 36, 0.92) !important;
    border: 1.5px solid rgba(25, 195, 255, 0.28) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
    word-break: break-all;
    -webkit-text-fill-color: #e8eef5 !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-input.form-control:focus {
    border-color: rgba(25, 195, 255, 0.55) !important;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.25),
        0 0 0 3px rgba(25, 195, 255, 0.12);
    outline: none !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.35rem;
    min-height: 2.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(14, 159, 217, 0.45), 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary:hover,
body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary:focus,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary:hover,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary:focus {
    background: linear-gradient(180deg, #22b8f5 0%, #14a8e5 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(25, 195, 255, 0.5), 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    transform: none;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary:active,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary:active {
    background: linear-gradient(180deg, #0e9fd9 0%, #0b8fc4 100%) !important;
    color: #ffffff !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary:disabled,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary:disabled {
    opacity: 0.85;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    color: #ffffff !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary .hxo-epp-copy__ico,
body.hxo-themed.page-clientareadomaingetepp .hxo-epp-copy.btn.btn-primary .hxo-epp-copy__label,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary .hxo-epp-copy__ico,
.hxo-epp-page .hxo-epp-copy.btn.btn-primary .hxo-epp-copy__label {
    color: #ffffff !important;
}

.hxo-epp-copy__ico {
    font-size: 0.95rem;
}

.hxo-epp-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
    padding: 1.15rem 1.35rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #b9d4ef !important;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.09), rgba(25, 195, 255, 0.03));
    border: 1px solid rgba(25, 195, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hxo-epp-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.12);
    color: #19c3ff;
    font-size: 1rem;
    flex-shrink: 0;
}

.hxo-epp-notice__text {
    margin: 0;
    padding-top: 0.1rem;
}

.hxo-epp-form {
    margin-top: 0.25rem;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-submit.btn.btn-primary,
.hxo-epp-page .hxo-epp-submit.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(14, 159, 217, 0.45), 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

body.hxo-themed.page-clientareadomaingetepp .hxo-epp-submit.btn.btn-primary:hover,
.hxo-epp-page .hxo-epp-submit.btn.btn-primary:hover {
    background: linear-gradient(180deg, #22b8f5 0%, #14a8e5 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.hxo-epp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 575px) {
    .hxo-epp-card-body.card-body {
        padding: 1.5rem 1.25rem 1.35rem !important;
    }
    .hxo-epp-copy.btn.btn-primary {
        width: 100%;
        justify-content: center;
    }
    body.hxo-themed.page-clientareadomaingetepp .hxo-epp-input.form-control {
        flex-basis: 100%;
    }
}

/* View ticket â€” rating stele dreapta (suprascrie theme.css float) */
body.hxo-themed.page-viewticket .hxo-view-ticket-page .hxo-vt-rating-bar,
body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
}

body.hxo-themed.page-viewticket .hxo-view-ticket-page .hxo-vt-rating-stars,
body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-stars {
    margin-left: auto !important;
    text-align: right !important;
}

body.hxo-themed.page-viewticket .hxo-view-ticket-page .hxo-vt-rating-stars .rating,
body.hxo-themed.page-viewticket .hxo-view-ticket-page .hxo-vt-rating-stars .rating-done,
body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-stars .rating,
body.hxo-themed .hxo-view-ticket-page .hxo-vt-rating-stars .rating-done {
    float: none !important;
    display: inline-flex !important;
    margin: 0 !important;
}


/* ===== Profile / Account Details (clientareadetails) ===== */
.hxo-profile-page {
    max-width: 1100px;
}

/* Sold credit (tab Add Funds) */
.hxo-profile-credit-balance {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin: 0 0 1.35rem;
    padding: 1rem 1.15rem 1rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(25, 195, 255, 0.28);
    border-left: 3px solid rgba(25, 195, 255, 0.65);
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.1) 0%, rgba(15, 27, 46, 0.55) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hxo-profile-credit-balance-icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--hx-primary);
    background: rgba(25, 195, 255, 0.14);
    border: 1px solid rgba(25, 195, 255, 0.32);
}

.hxo-profile-credit-balance-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.hxo-profile-credit-balance-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(160, 184, 210, 0.92);
    line-height: 1.25;
}

.hxo-profile-credit-balance-value {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #e8f4ff;
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 0 28px rgba(25, 195, 255, 0.22);
}

.hxo-profile-credit-balance--zero {
    border-left-color: rgba(120, 140, 165, 0.45);
    border-color: rgba(120, 140, 165, 0.22);
    background: linear-gradient(135deg, rgba(80, 100, 130, 0.08) 0%, rgba(15, 27, 46, 0.4) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hxo-profile-credit-balance--zero .hxo-profile-credit-balance-icon {
    color: rgba(160, 180, 205, 0.85);
    background: rgba(100, 120, 150, 0.12);
    border-color: rgba(120, 140, 165, 0.28);
}

.hxo-profile-credit-balance--zero .hxo-profile-credit-balance-value {
    color: rgba(195, 210, 228, 0.88);
    text-shadow: none;
    font-weight: 700;
}

/* SpaČ›iu Ă®ntre mesaje (success/error/info) Č™i bara de taburi din formular */
.hxo-profile-page > div.alert {
    margin-bottom: 0.75rem;
}

.hxo-profile-page > div.alert:last-of-type {
    margin-bottom: 2.35rem;
}

.hxo-profile-form {
    margin-top: 0.5rem;
}

.hxo-profile-tabs {
    display: inline-flex;
    gap: .5rem;
    background: rgba(15, 27, 46, .6);
    border: 1px solid var(--hx-border);
    border-radius: 12px;
    padding: .35rem;
    margin-bottom: 1.25rem;
}

.hxo-profile-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--hx-text-muted);
    padding: .5rem .95rem;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.hxo-profile-tab:hover {
    color: var(--hx-text);
}

.hxo-profile-tab.is-active {
    color: #fff;
    border-color: rgba(25, 195, 255, .3);
    background: rgba(25, 195, 255, .12);
}

.hxo-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.25rem;
    align-items: start;
}

.hxo-profile-main {
    min-width: 0;
}

.hxo-profile-panel {
    display: none;
}

.hxo-profile-panel.is-active {
    display: block;
}

.hxo-profile-card {
    padding: 1.5rem;
}

.hxo-profile-title {
    margin: 0 0 1rem;
    color: var(--hx-text);
    font-size: 1.05rem;
    font-weight: 700;
}

.hxo-profile-subtitle {
    margin: 0 0 .85rem;
    color: var(--hx-text);
    font-size: .92rem;
    font-weight: 600;
}

.hxo-profile-section-divider {
    border-top: 1px solid var(--hx-border);
    margin: 1rem 0;
}

.hxo-profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hxo-profile-form-grid .form-group {
    margin-bottom: 0;
}

.hxo-profile-form-grid .form-group label {
    display: block;
    margin-bottom: .42rem;
    font-size: .82rem;
    color: var(--hx-text);
    font-weight: 600;
}

.hxo-col-span-2 {
    grid-column: 1 / -1;
}

.hxo-profile-actions {
    margin-top: 1.15rem;
    display: flex;
    justify-content: flex-start;
}

.hxo-profile-save-row {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--hx-border);
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hxo-profile-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
}

.hxo-check-label {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.52rem 0.64rem;
    border-radius: 10px;
    border: 1px solid rgba(71, 103, 140, 0.28);
    background: rgba(12, 24, 41, 0.42);
    font-size: 0.875rem;
    color: #deebfb;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.hxo-check-label:hover {
    border-color: rgba(25, 195, 255, 0.34);
    background: rgba(14, 29, 50, 0.6);
}

.hxo-check-label .hxo-check-text {
    line-height: 1.28;
    font-weight: 600;
}

.hxo-pref-check {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    border-radius: 50%;
    border: 2px solid rgba(122, 139, 163, 0.85);
    background: rgba(7, 14, 28, 0.72);
    position: relative;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hxo-pref-check:hover {
    border-color: rgba(25, 195, 255, 0.72);
}

.hxo-pref-check:checked {
    border-color: #19c3ff;
    background:
        radial-gradient(circle at center, #19c3ff 0 3.2px, transparent 3.2px),
        rgba(7, 14, 28, 0.72);
    box-shadow: 0 0 10px rgba(25, 195, 255, 0.26);
}

.hxo-pref-check:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.2);
}

.hxo-check-label-marketing {
    margin-top: 0.45rem;
    width: fit-content;
    min-width: 120px;
}

.hxo-profile-hint {
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.hxo-alert {
    border-radius: 10px;
}

.hxo-readonly-field,
.hxo-readonly-select {
    opacity: 0.92;
    cursor: not-allowed;
}

.hxo-readonly-field:focus {
    box-shadow: none;
}

.hxo-password-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.hxo-profile-avatar-card {
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    top: 88px;
}

.hxo-profile-avatar {
    width: 86px;
    height: 86px;
    margin: .5rem auto .9rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--hx-primary);
    background: rgba(25, 195, 255, .12);
    border: 1px solid rgba(25, 195, 255, .28);
    font-size: 2rem;
}

@media (max-width: 1024px) {
    .hxo-profile-grid {
        grid-template-columns: 1fr;
    }

    .hxo-profile-avatar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hxo-profile-form-grid,
    .hxo-password-grid {
        grid-template-columns: 1fr;
    }

    .hxo-profile-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hxo-profile-tabs {
        grid-template-columns: 1fr;
    }
}
/* Inputs / select â€” dark (clientareadetails) */
body.hxo-themed.page-clientareadetails .hxo-profile-page .form-control,
body.hxo-themed.page-clientareadetails .hxo-profile-page select.form-control,
body.hxo-themed.page-clientareadetails .hxo-profile-page .custom-select,
body.hxo-themed.page-clientareadetails .hxo-profile-page #country,
body.hxo-themed.page-clientareadetails .hxo-profile-page .intl-tel-input .form-control {
    background: var(--hx-bg-input) !important;
    border: 1px solid var(--hx-border-input) !important;
    color: var(--hx-text) !important;
    border-radius: 8px;
}

body.hxo-themed.page-clientareadetails .hxo-profile-page .form-control:focus,
body.hxo-themed.page-clientareadetails .hxo-profile-page select.form-control:focus {
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

body.hxo-themed.page-clientareadetails .hxo-profile-page .form-control::placeholder {
    color: rgba(139, 156, 181, 0.55) !important;
}

body.hxo-themed.page-clientareadetails .main-content form[action*="details"] > .card {
    display: none !important;
}

body.hxo-themed.page-clientareadetails .hxo-profile-page .btn-primary {
    background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
    border: none !important;
    color: #fff !important;
}

body.hxo-themed.page-clientareadetails .hxo-profile-page .btn-default {
    background: transparent !important;
    border: 1px solid rgba(139, 156, 181, 0.45) !important;
    color: var(--hx-text) !important;
}


/* ===== Security (clientareasecurity) ===== */
.hxo-security-page {
    max-width: 900px;
}

.security-section {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hxo-pw-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: stretch;
        margin-bottom: 1rem;
    }

    .hxo-pw-row .hxo-pw-input-wrap {
        flex: 1 1 200px;
        min-width: 0;
    }

    .hxo-pw-input-wrap {
        position: relative;
    }

    .hxo-pw-input-wrap .form-control.hxo-pw-input {
        padding-right: 2.75rem;
    }

    .hxo-pw-toggle {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 6px;
        background: transparent;
        color: var(--text-muted, rgba(255, 255, 255, 0.55));
        cursor: pointer;
        line-height: 1;
        transition: color 0.15s ease, background 0.15s ease;
    }

    .hxo-pw-toggle:hover,
    .hxo-pw-toggle:focus {
        color: var(--primary, #19c3ff);
        outline: none;
    }

    .hxo-pw-toggle:focus-visible {
        box-shadow: 0 0 0 2px rgba(25, 195, 255, 0.35);
    }

    .hxo-pw-row .hxo-generate-password {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .hxo-pw-hidden-source {
        display: none !important;
    }

    .hxo-pw-existing-msg {
        min-height: 0;
    }

    .hxo-pw-existing-msg:not(:empty) {
        margin-top: 0.5rem;
    }

    .hxo-pw-existing-msg .help-block {
        margin-bottom: 0;
    }

    #newPassword1 .hxo-pw-strength {
        margin-top: 1rem;
    }

    #newPassword1 .hxo-alert.alert-info {
        margin-top: 1rem;
        margin-bottom: 1.25rem;
    }

    .hxo-pw-confirm-msg {
        min-height: 0;
    }

    .hxo-pw-confirm-msg:not(:empty) {
        margin-top: 1rem;
    }

    .hxo-pw-confirm-msg .help-block {
        margin-bottom: 0;
    }

    .hxo-security-actions {
        margin-top: 1.25rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }

    .hxo-sso-toggle {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .hxo-sso-toggle #inputAllowSso {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        margin: 0;
        border-radius: 50%;
        border: 2px solid rgba(122, 139, 163, 0.85);
        background: rgba(7, 14, 28, 0.72);
        position: relative;
        cursor: pointer;
        transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .hxo-sso-toggle #inputAllowSso:hover {
        border-color: rgba(25, 195, 255, 0.72);
    }

    .hxo-sso-toggle #inputAllowSso:checked {
        border-color: #19c3ff;
        background:
            radial-gradient(circle at center, #19c3ff 0 3px, transparent 3px),
            rgba(7, 14, 28, 0.72);
        box-shadow: 0 0 10px rgba(25, 195, 255, 0.26);
    }

    .hxo-sso-toggle #inputAllowSso:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.2);
    }

    .hxo-sso-toggle #ssoStatusTextEnabled,
    .hxo-sso-toggle #ssoStatusTextDisabled {
        font-weight: 600;
        line-height: 1.2;
    }

    .hxo-linked-table-wrap {
        margin-top: 1rem;
    }

    .hxo-linked-accounts-table {
        width: 100%;
        color: var(--hx-text);
    }

    .hxo-pw-strength {
        height: 8px;
        margin-top: 0.75rem;
        background: rgba(30, 45, 71, 0.5);
        border-radius: 4px;
        overflow: hidden;
    }

    .hxo-pw-strength .progress-bar {
        line-height: 8px;
        font-size: 0;
        height: 100%;
        min-width: 0;
        background-color: rgba(25, 195, 255, 0.35);
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .hxo-pw-strength .progress-bar-danger {
        background-color: #dc3545;
    }

    .hxo-pw-strength .progress-bar-warning {
        background-color: #f0ad4e;
    }

    .hxo-pw-strength .progress-bar-success {
        background-color: #28a745;
    }
    
    .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--hx-border);
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(25, 195, 255, 0.15);
        border-radius: 10px;
        color: var(--hx-primary);
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--hx-text);
        margin: 0;
    }
    
    .section-desc {
        font-size: 0.8rem;
        color: var(--hx-text-muted);
        margin: 0.25rem 0 0;
    }
    
    .security-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background: rgba(30, 45, 71, 0.3);
        border: 1px solid var(--hx-border);
        border-radius: 10px;
        margin-bottom: 0.75rem;
        transition: all 0.2s;
    }
    
    .security-item:hover {
        border-color: rgba(25, 195, 255, 0.2);
    }
    
    .security-item-info h4 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--hx-text);
        margin: 0 0 0.25rem;
    }
    
    .security-item-info p {
        font-size: 0.8125rem;
        color: var(--hx-text-muted);
        margin: 0;
    }
    
    .security-status {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .status-enabled {
        color: var(--hx-success);
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .status-disabled {
        color: var(--hx-text-muted);
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--hx-text);
        margin-bottom: 0.4rem;
    }
    
    .pw-requirements {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--hx-border);
    }
    
    .pw-req-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        color: var(--hx-text-muted);
    }
    
    .pw-req-item i {
        font-size: 0.7rem;
    }
/* Alerts inside security cards */
body.hxo-themed.page-clientareasecurity .hxo-security-page .alert {
    border-radius: 10px;
    font-size: 0.875rem;
}
body.hxo-themed.page-clientareasecurity .hxo-security-page .alert-success {
    background: rgba(34, 197, 94, 0.12) !important;
    border: 1px solid rgba(34, 197, 94, 0.28) !important;
    color: #86efac !important;
}
body.hxo-themed.page-clientareasecurity .hxo-security-page .alert-warning {
    background: rgba(234, 179, 8, 0.12) !important;
    border: 1px solid rgba(234, 179, 8, 0.28) !important;
    color: #fde68a !important;
}
body.hxo-themed.page-clientareasecurity .hxo-security-page .alert-danger {
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.28) !important;
    color: #fca5a5 !important;
}

/* Inputs */
body.hxo-themed.page-clientareasecurity .hxo-security-page .form-control {
    background: var(--hx-bg-input) !important;
    border: 1px solid var(--hx-border-input) !important;
    color: var(--hx-text) !important;
    border-radius: 8px;
}
body.hxo-themed.page-clientareasecurity .hxo-security-page .form-control:focus {
    border-color: rgba(25, 195, 255, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.12) !important;
}

/* Butoane Security â€” aliniate cu tema Hoxta (captura 2) */
body.hxo-themed.page-clientareasecurity .hxo-security-page .hxo-pw-row {
    align-items: stretch;
}

body.hxo-themed.page-clientareasecurity .hxo-security-page .hxo-pw-row .hxo-generate-password {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch;
    min-height: 42px;
    padding: 0 16px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    background: rgba(16, 26, 44, 0.9) !important;
    color: #e8eef5 !important;
    border: 1px solid rgba(139, 156, 181, 0.5) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareasecurity .hxo-security-page .hxo-pw-row .hxo-generate-password:hover {
    background: rgba(22, 34, 56, 0.95) !important;
    border-color: rgba(154, 168, 188, 0.65) !important;
    color: #ffffff !important;
}

body.hxo-themed.page-clientareasecurity .hxo-security-actions {
    gap: 0.65rem !important;
}

/* Save Changes â€” acelaČ™i stil ca hxo-btn-submit (Hoxta vechi) */
body.hxo-themed .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary,
body.hxo-themed.page-clientareasecurity .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary,
body.hxo-themed.page-clientareasecurity .hxo-security-actions .hxo-security-btn-save.btn.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: 44px;
    min-width: 0;
    padding: 0.7rem 1.35rem !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em;
    color: #ffffff !important;
    background-color: #19c3ff !important;
    background-image: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%) !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 18px rgba(25, 195, 255, 0.34) !important;
    text-shadow: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

body.hxo-themed .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:hover,
body.hxo-themed.page-clientareasecurity .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:hover,
body.hxo-themed.page-clientareasecurity .hxo-security-actions .hxo-security-btn-save.btn.btn-primary:hover {
    color: #ffffff !important;
    background-color: #2dd4ff !important;
    background-image: linear-gradient(135deg, #2dd4ff 0%, #19c3ff 100%) !important;
    border: 0 !important;
    box-shadow: 0 9px 22px rgba(25, 195, 255, 0.42) !important;
    transform: translateY(-1px);
}

body.hxo-themed .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:focus,
body.hxo-themed.page-clientareasecurity .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:focus {
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 6px 18px rgba(25, 195, 255, 0.34), 0 0 0 3px rgba(25, 195, 255, 0.28) !important;
}

body.hxo-themed .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:active,
body.hxo-themed.page-clientareasecurity .hxo-security-page form.using-password-strength .hxo-security-btn-save.btn.btn-primary:active {
    color: #ffffff !important;
    background-image: linear-gradient(135deg, #14b8e8 0%, #0c94cc 100%) !important;
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(25, 195, 255, 0.28) !important;
}

body.hxo-themed form.using-password-strength .hxo-security-btn-save.btn.btn-primary:disabled,
body.hxo-themed.page-clientareasecurity form.using-password-strength .hxo-security-btn-save.btn.btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
    color: #ffffff !important;
    background-color: #3d8fad !important;
    background-image: linear-gradient(135deg, rgba(25, 195, 255, 0.55) 0%, rgba(14, 165, 233, 0.55) 100%) !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareasecurity .hxo-security-actions .btn-default,
body.hxo-themed.page-clientareasecurity .hxo-security-actions input.btn-default[type="reset"],
body.hxo-themed.page-clientareasecurity .hxo-security-actions button.btn-default {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px;
    padding: 10px 22px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    background: rgba(16, 26, 44, 0.9) !important;
    color: #e8eef5 !important;
    border: 1px solid rgba(139, 156, 181, 0.5) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareasecurity .hxo-security-actions .btn-default:hover,
body.hxo-themed.page-clientareasecurity .hxo-security-actions input.btn-default[type="reset"]:hover {
    background: rgba(22, 34, 56, 0.95) !important;
    border-color: rgba(154, 168, 188, 0.65) !important;
    color: #ffffff !important;
}

/* Ascunde card Bootstrap alb (cache / fragment vechi) */
body.hxo-themed.page-clientareasecurity .main-content > .card:not(.glass-card) {
    display: none !important;
}

/* Password tips + strength meter (security) */
body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-tips {
    display: block !important;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.08) !important;
    border: 1px solid rgba(25, 195, 255, 0.35) !important;
    color: #67e8f9 !important;
    font-size: 0.8125rem;
    line-height: 1.6;
    clear: both;
}

body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-tips strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a5f3fc;
}

body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-tips code {
    display: inline;
    padding: 0.1em 0.35em;
    margin: 0 0.1em;
    border-radius: 4px;
    background: rgba(25, 195, 255, 0.15);
    color: #e0f2fe;
    font-size: 0.9em;
    white-space: nowrap;
}

/* Bara putere parolÄ â€” doar sub cĂ˘mpul New Password, nu sub Generate Password */
body.hxo-themed.page-clientareasecurity #newPassword1 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.75rem;
    row-gap: 0.35rem;
}

body.hxo-themed.page-clientareasecurity #newPassword1 > label {
    grid-column: 1 / -1;
    grid-row: 1;
}

body.hxo-themed.page-clientareasecurity #newPassword1 > .hxo-pw-row {
    display: contents;
}

body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-input-wrap {
    grid-column: 1;
    grid-row: 2;
}

body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-generate-password {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
}

body.hxo-themed.page-clientareasecurity #newPassword1 #passwordStrengthBar,
body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-strength {
    grid-column: 1;
    grid-row: 3;
    width: 100% !important;
    max-width: 100% !important;
}

body.hxo-themed.page-clientareasecurity #newPassword1 .hxo-pw-tips {
    grid-column: 1 / -1;
    grid-row: 4;
}

body.hxo-themed.page-clientareasecurity #newPassword2 {
    margin-top: 0;
    clear: both;
}

body.hxo-themed.page-clientareasecurity .hxo-security-page .hidden,
body.hxo-themed.page-clientareasecurity .hxo-security-page .w-hidden {
    display: none !important;
}

body.hxo-themed.page-clientareasecurity #passwordStrengthBar,
body.hxo-themed.page-clientareasecurity .hxo-security-page .hxo-pw-strength {
    height: 6px !important;
    min-height: 0 !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0.35rem !important;
    padding: 0 !important;
    background: rgba(30, 45, 71, 0.5) !important;
    border-radius: 4px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
}

body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar,
body.hxo-themed.page-clientareasecurity .hxo-pw-strength .progress-bar {
    height: 100% !important;
    min-height: 0 !important;
    font-size: 0 !important;
    line-height: 8px !important;
    border-radius: 0 !important;
    transition: width 0.2s ease, background-color 0.2s ease;
}

body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar.bg-danger,
body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar-danger {
    background-color: #dc3545 !important;
}

body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar.bg-warning,
body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar-warning {
    background-color: #f0ad4e !important;
}

body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar.bg-success,
body.hxo-themed.page-clientareasecurity #passwordStrengthBar .progress-bar-success {
    background-color: #28a745 !important;
}

body.hxo-themed.page-clientareasecurity .hxo-security-page .text-muted {
    color: var(--hx-text-muted) !important;
}

body.hxo-themed .hxo-alert.alert-info {
    background: rgba(25, 195, 255, 0.08) !important;
    border: 1px solid rgba(25, 195, 255, 0.35) !important;
    color: #67e8f9 !important;
}

/* SSO â€” toggle pill funcČ›ional (fÄrÄ Bootstrap Switch) */
body.hxo-themed.page-clientareasecurity .hxo-sso-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(8, 14, 28, 0.55);
    border: 1px solid rgba(139, 156, 181, 0.22);
}

body.hxo-themed.page-clientareasecurity .hxo-sso-status-text {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--hx-text);
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 52px;
    height: 28px;
    margin: 0;
    cursor: pointer;
    vertical-align: middle;
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #2f3a4d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    pointer-events: none;
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease;
    pointer-events: none;
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-input:checked ~ .hxo-sso-pill-track {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.25);
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-input:checked ~ .hxo-sso-pill-track .hxo-sso-pill-knob {
    transform: translateX(24px);
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-input:focus-visible ~ .hxo-sso-pill-track {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.45);
}

body.hxo-themed.page-clientareasecurity .hxo-sso-pill-input:checked:focus-visible ~ .hxo-sso-pill-track {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.55), 0 0 12px rgba(34, 197, 94, 0.25);
}



/* ===== Product / Service Details (clientareaproductdetails) — Hoxta ===== */
@keyframes cpanel-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
@keyframes vps-native-pulse {
    50% { opacity: 0.45; }
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page { padding-bottom: 2rem; }

    /* Page header: back arrow + Service Details + subtitle */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-page-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    /* Buton back circular, dark grey, border albastru â€“ ca Ă®n capturÄ */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-back-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(71,85,105,0.8);
        border: 1px solid rgba(25,195,255,0.5);
        color: var(--text);
        text-decoration: none;
        transition: background .2s, border-color .2s, color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-back-link:hover {
        background: rgba(71,85,105,1);
        border-color: var(--primary);
        color: var(--primary);
    }
    .service-page-header-text { flex: 1; min-width: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-page-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
        margin: 0 0 0.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-page-subtitle {
        font-size: 0.9375rem;
        color: var(--text-muted);
        margin: 0;
    }

    /* Product overview card â€“ ca Ă®n capturÄ: dark blue, border albastru discret */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card {
        position: relative;
        padding: 1.5rem 1.75rem;
        margin-bottom: 2rem;
        background: rgba(15,23,42,0.85);
        border: 1px solid rgba(25,195,255,0.2);
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-actions-top {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        display: flex;
        gap: 0.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none !important;
        transition: all .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-upgrade {
        background: transparent !important;
        color: var(--primary) !important;
        border: 1px solid var(--primary);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-upgrade:hover {
        background: rgba(25,195,255,0.12) !important;
        border-color: var(--primary);
        color: var(--primary) !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-manage {
        background: transparent !important;
        color: #94a3b8 !important;
        border: 1px solid rgba(148,163,184,0.5);
        cursor: pointer;
        font-family: inherit;
        font-size: 0.875rem;
        font-weight: 600;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-manage:hover {
        background: rgba(148,163,184,0.12) !important;
        border-color: #94a3b8;
        color: #cbd5e1 !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-cancel {
        background: transparent !important;
        color: #ef4444 !important;
        border: 1px solid #ef4444;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-cancel:hover {
        background: rgba(239,68,68,0.15) !important;
        color: #f87171 !important;
        border-color: #ef4444;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-main {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(25,195,255,0.12);
        border: 1px solid rgba(25,195,255,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-icon i {
        font-size: 1.4rem;
        color: var(--primary);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-gamecp .product-overview-icon {
        background: rgba(11, 191, 158, 0.15);
        border-color: rgba(11, 191, 158, 0.35);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-gamecp .product-overview-icon i {
        color: #0BBF9E;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-gamecp .badge-pill.badge-cpanel {
        background: rgba(11, 191, 158, 0.2);
        color: #5eead4;
        border-color: rgba(11, 191, 158, 0.4);
    }
    .product-overview-body { flex: 1; min-width: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin: 0 0 0.35rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin: 0 0 1rem;
        line-height: 1.4;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-badges .service-status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 9999px;
        font-size: 0.8125rem;
        font-weight: 600;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-badges .status-active {
        background: rgba(34, 197, 94, 0.9) !important;
        color: #fff !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-pill {
        display: inline-flex;
        align-items: center;
        padding: 6px 14px;
        border-radius: 9999px;
        font-size: 0.8125rem;
        font-weight: 600;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-muted {
        background: rgba(148,163,184,0.2);
        color: var(--text-muted);
    }
    /* ID Č™i cPanel â€“ fundal albastru solid, text alb â€“ ca Ă®n capturÄ */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-id {
        background: rgba(25,195,255,0.35) !important;
        color: #fff !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-cpanel {
        background: rgba(25,195,255,0.35) !important;
        color: #fff !important;
        text-decoration: none !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-cpanel:hover {
        background: rgba(25,195,255,0.5) !important;
        color: #fff !important;
    }
    /* Domain, Next Due Date, Price â€“ rĂ˘nd simplu, aliniat la stĂ˘nga (de la margine) */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-items: start;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta .meta-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta .meta-value {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text);
    }

    /* Bule Domain / Next Due Date / Price â€“ ca Ă®n capturÄ: 3 carduri egale, aliniate la stĂ˘nga */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-items: stretch;
        align-items: stretch;
        padding-bottom: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-card {
        background: rgba(30,45,71,0.7);
        border: 1px solid rgba(25,195,255,0.25);
        border-radius: 12px;
        padding: 1.1rem 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        min-width: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-card .meta-card-icon {
        font-size: 1.05rem;
        color: var(--primary);
        margin-bottom: 4px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-card .meta-card-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        font-weight: 500;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-card .meta-card-value {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page @media (max-width: 900px) {
        .product-overview-meta-cards-3,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards-4 { grid-template-columns: repeat(2, 1fr); }
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page @media (max-width: 480px) {
        .product-overview-meta-cards-3,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards-4 { grid-template-columns: 1fr; }
    }
    
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-status-badge {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 16px; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
    }
    .status-active { background: rgba(34, 197, 94, 0.2) !important; color: #22c55e !important; }
    .status-pending { background: rgba(234, 179, 8, 0.2) !important; color: #facc15 !important; }
    .status-suspended { background: rgba(239, 68, 68, 0.2) !important; color: #ef4444 !important; }
    .status-terminated, .status-cancelled { background: rgba(122, 139, 163, 0.2) !important; color: #9ca3af !important; }
    
    /* Module Login Buttons */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-module {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
        transition: all 0.2s; text-decoration: none !important; cursor: pointer; border: none;
    }
    .btn-module:hover { transform: translateY(-2px); }
    
    .btn-cpanel { background: linear-gradient(135deg, #ff6b35, #e55320); color: #fff !important; box-shadow: 0 4px 12px rgba(255,107,53,0.35); }
    .btn-cpanel:hover { box-shadow: 0 6px 18px rgba(255,107,53,0.5); color: #fff !important; }
    
    .btn-whm { background: linear-gradient(135deg, #1a73e8, #0d47a1); color: #fff !important; box-shadow: 0 4px 12px rgba(26,115,232,0.35); }
    .btn-whm:hover { box-shadow: 0 6px 18px rgba(26,115,232,0.5); color: #fff !important; }
    
    .btn-plesk { background: linear-gradient(135deg, #52BBE6, #3d8db5); color: #fff !important; box-shadow: 0 4px 12px rgba(82,187,230,0.35); }
    .btn-plesk:hover { box-shadow: 0 6px 18px rgba(82,187,230,0.5); color: #fff !important; }
    
    .btn-directadmin { background: linear-gradient(135deg, #2d7d9a, #1e5a70); color: #fff !important; box-shadow: 0 4px 12px rgba(45,125,154,0.35); }
    .btn-directadmin:hover { box-shadow: 0 6px 18px rgba(45,125,154,0.5); color: #fff !important; }
    
    .btn-virtualizor { background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff !important; box-shadow: 0 4px 12px rgba(99,102,241,0.35); }
    .btn-virtualizor:hover { box-shadow: 0 6px 18px rgba(99,102,241,0.5); color: #fff !important; }
    
    .btn-gamecp { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff !important; box-shadow: 0 4px 12px rgba(34,197,94,0.35); }
    .btn-gamecp:hover { box-shadow: 0 6px 18px rgba(34,197,94,0.5); color: #fff !important; }
    
    .btn-pterodactyl { background: linear-gradient(135deg, #4f7cff, #2d5ae0); color: #fff !important; box-shadow: 0 4px 12px rgba(79,124,255,0.35); }
    .btn-pterodactyl:hover { box-shadow: 0 6px 18px rgba(79,124,255,0.5); color: #fff !important; }
    
    .btn-cloudmin { background: linear-gradient(135deg, #5b8def, #3a6dd6); color: #fff !important; box-shadow: 0 4px 12px rgba(91,141,239,0.35); }
    .btn-cloudmin:hover { box-shadow: 0 6px 18px rgba(91,141,239,0.5); color: #fff !important; }
    
    .btn-virtualmin { background: linear-gradient(135deg, #388e3c, #2e7d32); color: #fff !important; box-shadow: 0 4px 12px rgba(56,142,60,0.35); }
    .btn-virtualmin:hover { box-shadow: 0 6px 18px rgba(56,142,60,0.5); color: #fff !important; }
    
    .btn-interworx { background: linear-gradient(135deg, #7b1fa2, #6a1b9a); color: #fff !important; box-shadow: 0 4px 12px rgba(123,31,162,0.35); }
    .btn-interworx:hover { box-shadow: 0 6px 18px rgba(123,31,162,0.5); color: #fff !important; }
    
    .btn-helm { background: linear-gradient(135deg, #0277bd, #01579b); color: #fff !important; box-shadow: 0 4px 12px rgba(2,119,189,0.35); }
    .btn-helm:hover { box-shadow: 0 6px 18px rgba(2,119,189,0.5); color: #fff !important; }
    
    .btn-tcadmin { background: linear-gradient(135deg, #e65100, #bf360c); color: #fff !important; box-shadow: 0 4px 12px rgba(230,81,0,0.35); }
    .btn-tcadmin:hover { box-shadow: 0 6px 18px rgba(230,81,0,0.5); color: #fff !important; }
    
    .btn-hypervm { background: linear-gradient(135deg, #c62828, #b71c1c); color: #fff !important; box-shadow: 0 4px 12px rgba(198,40,40,0.35); }
    .btn-hypervm:hover { box-shadow: 0 6px 18px rgba(198,40,40,0.5); color: #fff !important; }
    
    .btn-scpanel { background: linear-gradient(135deg, #455a64, #37474f); color: #fff !important; box-shadow: 0 4px 12px rgba(69,90,100,0.35); }
    .btn-scpanel:hover { box-shadow: 0 6px 18px rgba(69,90,100,0.5); color: #fff !important; }
    
    .btn-websitepanel { background: linear-gradient(135deg, #0288d1, #0277bd); color: #fff !important; box-shadow: 0 4px 12px rgba(2,136,209,0.35); }
    .btn-websitepanel:hover { box-shadow: 0 6px 18px rgba(2,136,209,0.5); color: #fff !important; }
    
    .btn-whmsonic { background: linear-gradient(135deg, #f57c00, #e65100); color: #fff !important; box-shadow: 0 4px 12px rgba(245,124,0,0.35); }
    .btn-whmsonic:hover { box-shadow: 0 6px 18px rgba(245,124,0,0.5); color: #fff !important; }
    
    .btn-module-generic { background: linear-gradient(135deg, #546e7a, #455a64); color: #fff !important; box-shadow: 0 4px 12px rgba(84,110,122,0.35); }
    .btn-module-generic:hover { box-shadow: 0 6px 18px rgba(84,110,122,0.5); color: #fff !important; }
    
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-action-primary {
        background: var(--primary) !important; color: #0a1220 !important;
        box-shadow: 0 4px 15px rgba(25, 195, 255, 0.3);
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
        transition: all 0.2s; text-decoration: none !important; cursor: pointer; border: none;
    }
    .btn-action-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(25, 195, 255, 0.4); }
    
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-action-outline {
        background: transparent !important; color: var(--text) !important; border: 1px solid var(--border) !important;
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
        transition: all 0.2s; text-decoration: none !important; cursor: pointer;
    }
    .btn-action-outline:hover { background: rgba(25,195,255,0.1) !important; border-color: rgba(25,195,255,0.3) !important; color: var(--primary) !important; }
    
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-action-danger {
        background: rgba(239,68,68,0.15) !important; color: #ef4444 !important; border: 1px solid rgba(239,68,68,0.3) !important;
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
        transition: all 0.2s; text-decoration: none !important; cursor: pointer;
    }
    .btn-action-danger:hover { background: rgba(239,68,68,0.25) !important; }
    
    /* Bottom two columns: Product Information | Account Actions */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .grid-two-cols {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-detail-bottom {
        margin-top: 2.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list li { margin: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 16px;
        color: #19c3ff !important;
        background: transparent !important;
        border: 1px solid #19c3ff;
        border-radius: 8px;
        text-decoration: none !important;
        font-size: 0.875rem;
        font-weight: 600;
        transition: border-color .2s, background .2s, color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a:hover {
        background: rgba(25,195,255,0.12) !important;
        border-color: #5ddbff !important;
        color: #5ddbff !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.active,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.account-action-changepw.active {
        color: #19c3ff !important;
        font-weight: 600;
        background: rgba(25,195,255,0.12) !important;
        border-color: #19c3ff !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.active i,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.account-action-changepw.active i { color: #19c3ff !important; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a i {
        font-size: 0.9rem;
        color: inherit;
        width: auto;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a:hover i,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.active i,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a.account-action-changepw.active i {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-detail-manage-wrap {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    /* Change cPanel Password â€“ formular funcČ›ional */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card {
        margin-bottom: 2rem;
        padding: 1.75rem;
    }
    .changepw-card .info-card-title { margin-bottom: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-alert {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-alert-success {
        background: rgba(34, 197, 94, 0.2);
        color: #22c55e;
        border: 1px solid rgba(34, 197, 94, 0.35);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-alert-error {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.35);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-form .changepw-field {
        margin-bottom: 1.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-form .changepw-field label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 0.4rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-input-wrap {
        position: relative;
        max-width: 320px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-form .changepw-field .form-control {
        width: 100%;
        max-width: 320px;
        padding: 0.6rem 2.5rem 0.6rem 0.875rem;
        font-size: 0.9375rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: rgba(15,23,42,0.6);
        color: var(--text);
    }
    .changepw-input-wrap .form-control { max-width: none; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-toggle-pw {
        position: absolute;
        top: 50%;
        right: 8px;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        padding: 0;
        border: none;
        border-radius: 6px;
        background: transparent;
        color: var(--text-muted);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color .2s, background .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-toggle-pw:hover {
        color: var(--primary);
        background: rgba(25,195,255,0.12);
    }
    .changepw-toggle-pw i { font-size: 0.9rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-form .changepw-field .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(25,195,255,0.15);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        border: 1px solid transparent;
        transition: background .2s, border-color .2s, color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit .btn-primary {
        background: var(--primary);
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit .btn-primary:hover {
        background: rgba(25,195,255,0.85);
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit .btn-outline {
        background: transparent;
        color: var(--text-muted);
        border-color: var(--border);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-submit .btn-outline:hover {
        background: rgba(148,163,184,0.15);
        color: var(--text);
    }

    /* Change Hostname (Virtualizor) â€“ card ca la Change Password */
    .changehostname-card { margin-bottom: 2rem; padding: 1.75rem; }
    .changehostname-card .info-card-title { margin-bottom: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .changehostname-current {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        color: var(--text);
    }
    .changehostname-label { color: var(--text-muted) !important; font-weight: 500; }
    .changehostname-card .changehostname-form .changepw-field { margin-bottom: 1.25rem; }
    .changehostname-result { margin-top: 1rem; }

    /* Reinstall OS (Virtualizor) â€“ selector modern */
    .reinstall-os-card { margin-bottom: 2rem; padding: 1.75rem; }
    .reinstall-os-card .info-card-title { margin-bottom: 0.5rem; }
    .reinstall-os-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
    .reinstall-os-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    .reinstall-os-item { margin: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-item-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(30,41,59,0.6) 0%, rgba(15,23,42,0.5) 100%);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .2s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-item-inner:hover {
        border-color: rgba(25,195,255,0.4);
        background: linear-gradient(180deg, rgba(30,41,59,0.75) 0%, rgba(25,195,255,0.06) 100%);
        box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        transform: translateY(-2px);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-item-inner.reinstall-os-selected {
        border-color: var(--primary);
        background: linear-gradient(180deg, rgba(25,195,255,0.12) 0%, rgba(25,195,255,0.04) 100%);
        box-shadow: 0 0 0 1px var(--primary), 0 4px 20px rgba(25,195,255,0.15);
    }
    .reinstall-os-item-inner.reinstall-os-selected .reinstall-os-icon-fb { color: var(--primary); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        margin-bottom: 0.15rem;
    }
    .reinstall-os-logo { max-width: 52px; max-height: 52px; object-fit: contain; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-icon-fb {
        font-size: 2.25rem;
        color: var(--text-muted);
        transition: color .2s ease;
    }
    .reinstall-os-item-inner:hover .reinstall-os-icon-fb { color: var(--primary); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text);
        text-align: center;
        letter-spacing: 0.01em;
    }
    /* Dropdown custom â€“ trigger + listÄ modernÄ (Ă®nlocuieČ™te select nativ) */
    .reinstall-os-version-wrap { position: relative; width: 100%; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        padding: 0.6rem 0.75rem;
        border-radius: 10px;
        border: 1px solid var(--border);
        background: rgba(15,23,42,0.7);
        color: var(--text);
        cursor: pointer;
        transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
        text-align: left;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-trigger:hover {
        border-color: rgba(25,195,255,0.5);
        background-color: rgba(25,195,255,0.06);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-trigger:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(25,195,255,0.2);
    }
    .reinstall-os-version-trigger-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-chevron {
        font-size: 0.65rem;
        color: var(--text-muted);
        transition: transform .2s ease;
        flex-shrink: 0;
    }
    .reinstall-os-version-wrap:has(.reinstall-os-version-dropdown-open) .reinstall-os-version-chevron { transform: rotate(180deg); color: var(--primary); }
    /* CĂ˘nd dropdown e deschis, cardul OS trebuie deasupra secČ›iunii ParolÄ (stacking) */
    .reinstall-os-item-inner:has(.reinstall-os-version-dropdown-open) { z-index: 1000; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-dropdown {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 12px;
        max-height: 220px;
        overflow-y: auto;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(30,41,59,0.98);
        box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
        z-index: 1001;
        display: none;
        padding: 6px;
    }
    .reinstall-os-version-dropdown.reinstall-os-version-dropdown-open { display: block; }
    .reinstall-os-version-dropdown::-webkit-scrollbar { width: 8px; }
    .reinstall-os-version-dropdown::-webkit-scrollbar-track { background: rgba(15,23,42,0.5); border-radius: 4px; }
    .reinstall-os-version-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
    .reinstall-os-version-dropdown::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-option {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        color: var(--text);
        cursor: pointer;
        border-radius: 8px;
        transition: background .15s ease, color .15s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-option:hover {
        background: rgba(25,195,255,0.15);
        color: var(--primary);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-version-option:focus {
        outline: none;
        background: rgba(25,195,255,0.1);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-item-inner.reinstall-os-selected .reinstall-os-version-trigger {
        border-color: var(--primary);
        background-color: rgba(25,195,255,0.08);
        color: var(--text);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card {
        position: relative;
        z-index: 2;
        margin-top: 0.5rem;
        margin-bottom: 1.25rem;
        padding: 1.25rem;
        background: rgba(15,23,42,0.5);
        border: 1px solid var(--border);
        border-radius: 10px;
    }
    .reinstall-os-pw-card .info-card-title { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
    .reinstall-os-pw-card .changepw-field { margin-bottom: 1.25rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card .changepw-field label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card .changepw-input-wrap {
        max-width: 100%;
        margin-top: 0.5rem;
        display: flex;
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card .changepw-input-wrap .form-control {
        max-width: 100%;
        flex: 1;
        min-width: 200px;
        padding: 0.65rem 1rem 0.65rem 0.875rem;
        margin-right: 0;
    }
    /* Ochi alÄturi de input, fÄrÄ suprapunere â€“ anulÄm position:absolute doar pentru ochi */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card .changepw-input-wrap .changepw-toggle-pw {
        position: static;
        transform: none;
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 6px;
        border: 1px solid var(--border);
        background: rgba(15,23,42,0.5);
        color: var(--text-muted);
        cursor: pointer;
        transition: color .2s, background .2s, border-color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-os-pw-card .changepw-input-wrap .changepw-toggle-pw:hover {
        color: var(--primary);
        background: rgba(25,195,255,0.12);
        border-color: var(--primary);
    }
    .reinstall-os-pw-card .changepw-input-wrap .changepw-toggle-pw i { font-size: 0.9rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-strength-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
    .reinstall-strength-label { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-strength-row .reinstall-gen-pw {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 6px;
        border: 1px solid var(--border);
        background: rgba(15,23,42,0.5);
        color: var(--text-muted);
        cursor: pointer;
        transition: color .2s, background .2s, border-color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-strength-row .reinstall-gen-pw:hover {
        color: var(--primary);
        background: rgba(25,195,255,0.12);
        border-color: var(--primary);
    }
    .reinstall-strength-value { font-size: 0.8rem; color: var(--text-muted); min-height: 1em; margin-top: 0.25rem; }
    .reinstall-os-options { margin-bottom: 1.25rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-option-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    .reinstall-option-label { font-size: 0.9rem; color: var(--text); }
    .reinstall-toggle { position: absolute; opacity: 0; width: 0; height: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-toggle-switch {
        position: relative;
        width: 44px;
        height: 24px;
        flex-shrink: 0;
        background: var(--border);
        border-radius: 12px;
        transition: background .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .reinstall-toggle-switch::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #fff;
        border-radius: 50%;
        transition: transform .2s;
    }
    .reinstall-toggle:checked + .reinstall-toggle-switch { background: var(--primary); }
    .reinstall-toggle:checked + .reinstall-toggle-switch::after { transform: translateX(20px); }
    .reinstall-select { max-width: 280px; padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(15,23,42,0.6); color: var(--text); }
    .reinstall-submit { margin-top: 1rem; }
    .reinstall-os-result { margin-top: 1rem; }
    .reinstall-os-validation { margin-bottom: 1rem; }
    .vps-ctrl-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
    .vps-ctrl-btn.active:hover { background: rgba(25,195,255,0.9); color: #fff; }

    /* Info Grid (shared with product-info-card, account-actions-card) */
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
    .info-card { padding: 1.75rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .info-card-title {
        display: flex; align-items: center; gap: 10px;
        font-size: 0.9rem; font-weight: 600; color: var(--hx-text) !important;
        text-transform: none; letter-spacing: 0;
        margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--hx-border);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .info-card-title i { color: var(--hx-primary) !important; font-size: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-row { display: flex; justify-content: space-between; font-size: 0.9375rem; margin-bottom: 0.875rem; gap: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-row span:first-child { color: var(--hx-text-muted) !important; font-weight: 500; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-row span:last-child { color: var(--hx-text) !important; font-weight: 600; text-align: right; word-break: break-all; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-highlight { font-family: 'JetBrains Mono', monospace; color: var(--hx-primary) !important; background: rgba(25,195,255,0.1); padding: 4px 8px; border-radius: 6px; font-size: 0.875rem; }
    
    /* cPanel Quick Actions â€“ design profesional, tile-uri clare */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(15,23,42,0.6);
        border: 1px solid rgba(148,163,184,0.18);
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(148,163,184,0.12);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
        animation: cpanel-dot-pulse 1.8s ease-in-out infinite;
        flex-shrink: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        letter-spacing: 0.02em;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 1rem 1.1rem;
        border-radius: 10px;
        background: rgba(30,41,59,0.4);
        border: 1px solid rgba(148,163,184,0.15);
        text-decoration: none !important;
        color: var(--text) !important;
        min-height: 88px;
        transition: border-color .2s, background .2s, box-shadow .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--primary);
        background: rgba(25,195,255,0.1);
        border: 1px solid rgba(25,195,255,0.2);
        flex-shrink: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item .label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #e2e8f0;
        line-height: 1.25;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item .hint {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.3;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item:hover {
        background: rgba(30,41,59,0.7);
        border-color: rgba(25,195,255,0.4);
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item:hover i {
        background: rgba(25,195,255,0.18);
        border-color: rgba(25,195,255,0.35);
        color: var(--primary);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item:hover .label {
        color: var(--primary);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-item:active {
        transform: scale(0.98);
    }

    /* Manager (Login cPanel etc.) Ă®n interiorul cardului cPanel Quick Actions */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-manager-wrap {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-manager-body { padding-top: 0.5rem; }

    /* Virtualizor â€“ integrare clasic + modern, aspect unitar */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-manager-panel {
        margin-bottom: 2.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap {
        margin-bottom: 0;
        --vps-radius: 12px;
        --vps-gap: 1.25rem;
        --vps-card-bg: rgba(15,23,42,0.85);
        --vps-card-border: rgba(148,163,184,0.2);
        --vps-card-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .glass-card {
        background: var(--vps-card-bg);
        border: 1px solid var(--vps-card-border);
        border-radius: var(--vps-radius);
        box-shadow: var(--vps-card-shadow);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        margin-bottom: var(--vps-gap);
        padding: 0 0 0 0;
        border-bottom: 1px solid var(--vps-card-border);
        min-height: 48px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-left {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn {
        padding: 0.75rem 1.15rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-muted);
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        cursor: pointer;
        font-family: inherit;
        transition: color .2s, border-color .2s;
    }
    .vps-tab-btn:hover { color: var(--text); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }
    .vps-tab-btn-dropdown { padding-right: 0.5rem; }
    .vps-tab-btn-dropdown i { font-size: 0.65rem; margin-left: 6px; opacity: 0.85; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-ip {
        font-family: ui-monospace, "SF Mono", Consolas, monospace;
        font-size: 0.8rem;
        color: var(--text-muted);
        padding: 0.35rem 0.6rem;
        background: rgba(30,45,71,0.5);
        border-radius: 6px;
        border: 1px solid rgba(148,163,184,0.15);
    }
    .vps-tab-content { display: none; }
    .vps-tab-content.active { display: block; }

    /* Panoul live Virtualizor (iframe) â€“ vizibil, full width */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-wrap {
        margin-bottom: var(--vps-gap);
        padding: 0;
        overflow: hidden;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-header {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        padding: 0.9rem 1.25rem;
        border-bottom: 1px solid var(--vps-card-border);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-hint {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-body {
        min-height: 420px;
        padding: 0;
        position: relative;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-live-panel-body iframe {
        display: block;
        width: 100%;
        min-height: 420px;
        border: none;
        background: rgba(15,23,42,0.5);
    }

    /* Quick bar: Online + power/restart/console â€“ o singurÄ barÄ integratÄ */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem 1.5rem;
        padding: 0.85rem 1.25rem;
        margin-bottom: var(--vps-gap);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-status {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: var(--text);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
        animation: cpanel-dot-pulse 1.8s ease-in-out infinite;
    }
    .vps-quick-bar-online { font-weight: 600; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(30,45,71,0.7);
        border: 1px solid rgba(148,163,184,0.22);
        color: var(--text);
        text-decoration: none;
        cursor: pointer;
        transition: border-color .2s, background .2s, color .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn:hover:not(:disabled) {
        border-color: var(--primary);
        background: rgba(25,195,255,0.12);
        color: var(--primary);
    }
    .vps-quick-btn:disabled { opacity: 0.5; cursor: not-allowed; }

    /* Dashboard â€“ douÄ coloane, stil unitar cu restul paginii */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dashboard {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
        gap: var(--vps-gap);
        margin-bottom: 2rem;
        align-items: start;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dashboard-col {
        display: flex;
        flex-direction: column;
        gap: var(--vps-gap);
        min-width: 0;
    }
    .vps-dashboard-col-graphs .vps-dash-card-chart { flex: 1; min-height: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-chart {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    .vps-dash-card-chart .vps-dash-chart-placeholder { flex: 1; min-height: 140px; }
    /* Grafice React (virtualizor-charts build): fÄrÄ â€ždubluâ€ť glass â€” cardul e Ă®n componentÄ */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-react-chart.vps-dash-card {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-react-chart .vps-dash-chart-placeholder {
        min-height: 200px;
    }
    /* Grafice SVG native Virtualizor (fÄrÄ React) */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-native-chart.vps-dash-card {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart {
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        padding: 1.15rem 1.25rem;
        border-radius: var(--vps-radius, 12px);
        background: rgba(22, 34, 58, 0.92);
        border: 1px solid rgba(148, 163, 184, 0.14);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
        color: #e8eef8;
        -webkit-font-smoothing: antialiased;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 0.85rem;
        gap: 0.75rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-title {
        margin: 0;
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted, #94a3b8);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-mono {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        font-size: 10px;
        color: rgba(203, 213, 225, 0.85);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-value-wrap {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-pulse {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #5b9cf8;
        animation: vps-native-pulse 2s ease-in-out infinite;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-main {
        display: flex;
        gap: 0.5rem;
        align-items: stretch;
        min-height: 10rem;
    }
    /* AxÄ Y: sus = valori mari, jos = 0 (nu column-reverse â€” acela pune 0 sus). */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-ylabels {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 10px;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        color: rgba(148, 163, 184, 0.95);
        padding-right: 0.35rem;
        padding-top: 0;
        padding-bottom: 0;
        flex-shrink: 0;
        min-width: 3.25rem;
        text-align: right;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-ylabels span {
        line-height: 1.1;
        display: block;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-plot {
        position: relative;
        flex: 1 1 0%;
        min-width: 0;
        min-height: 10rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-gridlines {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-gridline {
        position: absolute;
        left: 0;
        right: 0;
        height: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-svg {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 10rem;
    }
    .vps-cpu-stroke { stroke: #5b9cf8; }
    .vps-net-stroke-total { stroke: #5b9cf8; }
    .vps-net-stroke-dl { stroke: #22c69a; }
    .vps-net-stroke-ul { stroke: #f5bf2a; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-footer {
        display: flex;
        justify-content: space-between;
        margin-top: 0.35rem;
        margin-left: 3.5rem;
        font-size: 10px;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        color: rgba(148, 163, 184, 0.85);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-legend {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.65rem 1rem;
        margin-top: 0.85rem;
        padding-top: 0.6rem;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        font-size: 10px;
        color: rgba(203, 213, 225, 0.88);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-legend-item {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-leg-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        flex-shrink: 0;
    }
    .vps-leg-total { background: #5b9cf8; }
    .vps-leg-dl { background: #22c69a; }
    .vps-leg-ul { background: #f5bf2a; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-now {
        margin-left: auto;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        color: rgba(148, 163, 184, 0.85);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-compact {
        margin-bottom: 0;
        flex-wrap: nowrap;
        gap: 0.75rem 1rem;
        padding: 0.65rem 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card {
        padding: 1.25rem 1.5rem;
        border-radius: var(--vps-radius);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-title {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        margin: 0 0 0.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: #eaf2ff;
        margin-bottom: 0.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-meta {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: 0.35rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-progress {
        height: 8px;
        border-radius: 999px;
        background: rgba(30,45,71,0.8);
        overflow: hidden;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-progress-fill {
        height: 100%;
        border-radius: 999px;
        background: #f59e0b;
        transition: width .3s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-bar-inout {
        display: flex;
        height: 8px;
        border-radius: 999px;
        overflow: hidden;
        background: rgba(30,45,71,0.8);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-bar-in {
        background: var(--primary);
        transition: width .3s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-bar-out {
        background: rgba(239,68,68,0.7);
        transition: width .3s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct-row {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct-cell {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct-label {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct {
        display: inline-block;
        padding: 0.35rem 0.75rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct-in {
        background: rgba(25,195,255,0.35);
        border: 1px solid rgba(25,195,255,0.5);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-bw-pct-out {
        background: rgba(185,28,28,0.4);
        border: 1px solid rgba(239,68,68,0.5);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-chart-placeholder {
        min-height: 150px;
        background: rgba(30,45,71,0.5);
        border-radius: 8px;
        margin-top: 0.5rem;
        display: flex;
        align-items: stretch;
        padding: 14px 12px 14px 64px;
        border: 1px solid rgba(148,163,184,0.12);
        overflow: visible;
        box-sizing: border-box;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-chart-bars {
        display: flex;
        align-items: stretch;
        gap: 4px;
        min-height: 126px;
        width: 100%;
    }
    .vps-dash-chart-bars::before,
    .vps-dash-chart-bars::after { content: none; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-cpu-chart {
        min-height: 150px;
        background: linear-gradient(180deg, rgba(30,45,71,0.4) 0%, rgba(30,45,71,0.6) 100%);
    }
    /* SVG area charts â€“ dimensiuni mari, etichete vizibile */
    .vps-dash-chart-placeholder .vps-svg-chart,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-chart-bars .vps-svg-chart {
        width: 100%;
        height: 100%;
        min-height: 126px;
        display: block;
    }
    .vps-dash-chart-bars .vps-svg-chart { min-height: 126px; }
    .vps-dash-cpu-chart .vps-svg-chart { min-height: 126px; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-chart-grid {
        stroke: rgba(148,163,184,0.2);
        stroke-width: 0.5;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-chart-axis-label {
        font-size: 11px;
        fill: rgba(203,213,225,0.95);
        font-family: inherit;
    }
    .vps-cpu-area { fill: rgba(25,195,255,0.35); }
    .vps-cpu-line { fill: none; stroke: var(--primary); stroke-width: 1.5; }
    .vps-net-dl-area { fill: rgba(34,197,94,0.5); }
    .vps-net-ul-area { fill: rgba(245,158,11,0.5); }
    .vps-net-total-line { fill: none; stroke: var(--primary); stroke-width: 1.5; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-mini-bar-wrap {
        height: 24px;
        background: rgba(30,45,71,0.6);
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 6px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-mini-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary), rgba(25,195,255,0.7));
        border-radius: 6px;
        transition: width .4s ease;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-mini-bar-label {
        font-size: 0.8rem;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-net-bars {
        display: flex;
        align-items: flex-end;
        gap: 8px;
        height: 60px;
        width: 100%;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-net-bar {
        flex: 1;
        min-width: 12px;
        border-radius: 4px 4px 0 0;
        transition: height .3s ease;
    }
    .vps-net-total { background: rgba(25,195,255,0.6); }
    .vps-net-dl { background: rgba(34,197,94,0.7); }
    .vps-net-ul { background: rgba(245,158,11,0.7); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-legend-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 4px;
        vertical-align: middle;
    }
    .vps-legend-total { background: var(--primary); }
    .vps-legend-dl { background: #22c55e; }
    .vps-legend-ul { background: #f59e0b; }
    .vps-dash-card-account .vps-account-rows { margin-top: 0.5rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-account-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(148,163,184,0.15);
        font-size: 0.9rem;
    }
    .vps-account-row:last-child { border-bottom: none; }
    .vps-account-label { color: var(--text-muted); }
    .vps-account-value { color: var(--text); font-weight: 500; }
    .vps-account-pw-wrap { display: inline-flex; align-items: center; gap: 6px; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-account-btn {
        background: none;
        border: none;
        color: var(--text-muted);
        cursor: pointer;
        padding: 4px 6px;
        border-radius: 4px;
        transition: color .2s, background .2s;
    }
    .vps-account-btn:hover { color: var(--primary); background: rgba(25,195,255,0.1); }
    .vps-account-pw-toggle { padding: 2px; }
    .vps-account-pw-toggle:hover { color: var(--primary); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-toggle {
        display: inline-block;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        cursor: default;
        border: 1px solid rgba(148,163,184,0.3);
        background: rgba(51,65,85,0.6);
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-toggle.vps-2fa-on {
        background: rgba(34,197,94,0.25);
        border-color: rgba(34,197,94,0.5);
        color: #4ade80;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-toggle.vps-2fa-off {
        background: rgba(51,65,85,0.6);
        border-color: rgba(148,163,184,0.3);
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-toggle.vps-2fa-clickable {
        cursor: pointer;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-toggle.vps-2fa-clickable:hover {
        border-color: rgba(25,195,255,0.4);
        background: rgba(25,195,255,0.08);
    }

    /* Virtualizor VPS Controls â€“ card unitar */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-card {
        margin-bottom: 2rem;
        padding: 1.35rem 1.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 1.1rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
        animation: cpanel-dot-pulse 1.8s ease-in-out infinite;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-header-icon {
        font-size: 0.95rem;
        color: var(--primary);
        margin-right: 2px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-title {
        font-weight: 600;
        color: var(--text);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-wrap {
        padding-top: 0.25rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-module {
        padding-top: 0.75rem;
    }
    .vps-controls-module:empty { display: none; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-placeholder {
        font-size: 0.9rem;
        margin: 0;
        padding: 1rem 0;
    }
    /* Placeholder grid â€“ layout ca Ă®n captura 2 */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-placeholder-grid {
        display: block;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .vps-controls-row:last-child { margin-bottom: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-row-primary {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .vps-controls-row-primary form,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-row-primary > .vps-ctrl-btn {
        display: block;
        min-width: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-row-primary .vps-ctrl-btn {
        width: 100%;
        justify-content: center;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        background: transparent !important;
        border: 1px solid;
        opacity: 0.9;
        font-family: inherit;
    }
    .vps-ctrl-btn:hover { opacity: 1; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }
    .vps-ctrl-btn i { font-size: 0.9rem; }
    .vps-ctrl-start { color: #22c55e; border-color: #22c55e; }
    .vps-ctrl-stop { color: #ef4444; border-color: #ef4444; }
    .vps-ctrl-restart { color: #f59e0b; border-color: #f59e0b; }
    .vps-ctrl-reinstall { color: var(--primary); border-color: var(--primary); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-row-secondary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 1rem 1.1rem;
        border-radius: 10px;
        background: rgba(30,45,71,0.55);
        border: 1px solid rgba(148,163,184,0.18);
        color: var(--text);
        cursor: default;
        transition: border-color .2s, background .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile-link {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile-link:hover {
        background: rgba(30,45,71,0.75);
        border-color: rgba(25,195,255,0.35);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile:hover {
        border-color: rgba(25,195,255,0.35);
        background: rgba(30,45,71,0.75);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile i {
        font-size: 1.1rem;
        color: var(--primary);
        margin-bottom: 2px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #eaf2ff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile-hint {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-tile-disabled {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }
    #vpsModulePanel .btn,
    #vpsModulePanel .btn-primary,
    #vpsModulePanel .btn-success,
    #vpsModulePanel .btn-danger,
    #vpsModulePanel .btn-warning,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page #vpsModulePanel .btn-info {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 20px !important;
        border-radius: 8px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        margin: 0.25rem !important;
        border: none !important;
        cursor: pointer !important;
    }
    #vpsModulePanel .btn-success { background: #22c55e !important; color: #fff !important; }
    #vpsModulePanel .btn-danger { background: #ef4444 !important; color: #fff !important; }
    #vpsModulePanel .btn-warning { background: #f59e0b !important; color: #fff !important; }
    #vpsModulePanel .btn-info { background: var(--primary) !important; color: #0a1220 !important; }

    /* VPS Specifications â€“ rĂ˘nd orizontal, stil unitar */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-specs-card {
        margin-bottom: 2rem;
        padding: 1.35rem 1.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-specs-card .info-card-title {
        margin-bottom: 1rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-muted);
    }
    .vps-specs-card .info-card-title i { color: var(--primary) !important; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-specs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-spec-item {
        background: rgba(30,45,71,0.5);
        border: 1px solid rgba(148,163,184,0.18);
        border-radius: 10px;
        padding: 1rem 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        transition: border-color .2s;
    }
    .vps-spec-item:hover { border-color: rgba(25,195,255,0.25); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-spec-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        font-weight: 500;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-spec-value {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
    }

    /* Ascunde butoanele Log in to cPanel / Log in to Webmail din vechiul manager */
    .cpanel-manager-module [data-identifier="cpanel"],
    .cpanel-manager-module [data-identifier="webmail"],
    body.hxo-themed.page-clientareaproductdetails #modulePanel [data-identifier="cpanel"],
    body.hxo-themed.page-clientareaproductdetails #modulePanel [data-identifier="webmail"] { display: none !important; }
    /* Butoane Log in to cPanel / Log in to Webmail â€“ form din modules/servers/cpanel/templates/loginbuttons.tpl */
    body.hxo-themed.page-clientareaproductdetails #modulePanel .modulebutton,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-manager-module .modulebutton { display: none !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel form:has(.modulebutton),
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-manager-module form:has(.modulebutton) { display: none !important; }
    
    /* Module Panel (standalone pentru non-cPanel) */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel { padding: 2rem; margin-bottom: 2rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-title { font-size: 1.25rem; font-weight: 700; color: var(--text) !important; margin: 0 0 1.5rem; display: flex; align-items: center; gap: 10px; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-title i { color: var(--primary) !important; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-body { padding-top: 0.5rem; }
    
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn, body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-default, body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-primary, body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-success, body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-info {
        display: inline-flex !important; align-items: center !important; gap: 8px !important;
        padding: 10px 20px !important; border-radius: 8px !important; font-size: 0.875rem !important;
        font-weight: 600 !important; transition: all 0.2s !important; border: none !important;
        cursor: pointer !important; margin: 0.25rem !important; font-family: inherit !important; text-decoration: none !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-default { background: rgba(30,45,71,0.6) !important; border: 1px solid rgba(25,195,255,0.25) !important; color: var(--text) !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-default:hover { background: rgba(25,195,255,0.1) !important; border-color: rgba(25,195,255,0.5) !important; color: var(--primary) !important; transform: translateY(-1px) !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-primary { background: var(--primary) !important; color: #0a1220 !important; box-shadow: 0 4px 15px rgba(25,195,255,0.3) !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(25,195,255,0.45) !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-success { background: linear-gradient(135deg, #22c55e, #16a34a) !important; color: #fff !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-info { background: linear-gradient(135deg, #6366f1, #4f46e5) !important; color: #fff !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .btn-group { display: flex !important; flex-wrap: wrap !important; gap: 0.25rem !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel table { width: auto !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .panel, body.hxo-themed.page-clientareaproductdetails #modulePanel .well { background: rgba(30,45,71,0.3) !important; border: 1px solid var(--border) !important; border-radius: 8px !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel p, body.hxo-themed.page-clientareaproductdetails #modulePanel span, body.hxo-themed.page-clientareaproductdetails #modulePanel td, body.hxo-themed.page-clientareaproductdetails #modulePanel th, body.hxo-themed.page-clientareaproductdetails #modulePanel label { color: var(--text) !important; }
    body.hxo-themed.page-clientareaproductdetails #modulePanel a { color: var(--primary) !important; }
    
    /* cPanel Quick Shortcuts (module output) */
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 2rem !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .card-header,
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .panel-heading {
        background: transparent !important;
        border: none !important;
        padding: 0 0 0.75rem 0 !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .card-title,
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .panel-title {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-muted) !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .card-body,
    body.hxo-themed.page-clientareaproductdetails #modulePanel #cPanelQuickShortcutsPanel .panel-body {
        padding: 0 !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
        text-align: left;
        margin-top: 0.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row > div {
        padding: 0;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 1rem 0.75rem;
        border-radius: 12px;
        background: rgba(15,23,42,0.9);
        border: 1px solid rgba(148,163,184,0.25);
        color: #5eb8e8 !important;
        text-decoration: none !important;
        min-height: 88px;
        transition: border-color .18s ease, background .18s ease, transform .18s ease, color .18s ease;
        font-size: 0.8125rem;
        font-weight: 500;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row a img {
        max-width: 24px;
        max-height: 24px;
        margin-bottom: 4px;
        opacity: 0.9;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row a:hover {
        border-color: rgba(25,195,255,0.55);
        background: rgba(15,23,42,1);
        transform: translateY(-1px);
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .cpanel-feature-row a:hover img {
        opacity: 1;
    }

    /* Sitejet / Usage Statistics / alte carduri modul cPanel — fundal întunecat (nu alb ca captura 3 Nexus) */
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) {
        background: rgba(15, 23, 42, 0.92) !important;
        border: 1px solid rgba(25, 195, 255, 0.18) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
        margin-bottom: 1.25rem !important;
        color: var(--text, #e8eef5) !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card > .card-header,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) > .card-header,
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card > .panel-heading,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) > .panel-heading {
        background: transparent !important;
        border-bottom: 1px solid rgba(25, 195, 255, 0.12) !important;
        color: rgba(139, 156, 181, 0.95) !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card .card-title,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) .card-title,
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card .panel-title,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) .panel-title {
        color: rgba(139, 156, 181, 0.95) !important;
        font-size: 0.9rem !important;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card > .card-body,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) > .card-body,
    body.hxo-themed.page-clientareaproductdetails #modulePanel > .card > .panel-body,
    body.hxo-themed.page-clientareaproductdetails #modulePanel .card:not(#cPanelQuickShortcutsPanel) > .panel-body {
        background: transparent !important;
        color: var(--text, #e8eef5) !important;
    }
    body.hxo-themed.page-clientareaproductdetails #modulePanel .progress {
        background: rgba(30, 45, 71, 0.55) !important;
        border-radius: 6px !important;
    }

    /* ========== GameCP — Server Controls (captura 2 style) ========== */
    body.hxo-themed.page-clientareaproductdetails { --gamecp-accent: #0BBF9E; --gamecp-accent-rgb: 11, 191, 158; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper {
        padding: 1.75rem 2rem;
        margin-bottom: 2rem;
        background: rgba(22, 26, 33, 0.6);
        border: 1px solid rgba(var(--gamecp-accent-rgb), 0.2);
        border-radius: 14px;
    }
    .gamecp-panel { font-family: inherit; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-alert {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    .gamecp-alert-success { background: rgba(16,185,129,0.2); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.4); }
    .gamecp-alert-error   { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.4); }
    .gamecp-alert-icon    { font-size: 1rem; flex-shrink: 0; }

    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-section-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-section-icon {
        color: var(--gamecp-accent);
        font-size: 1.1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-open-panel-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--gamecp-accent);
        border: 1px solid rgba(var(--gamecp-accent-rgb), 0.5);
        background: rgba(var(--gamecp-accent-rgb), 0.1);
        text-decoration: none;
        transition: all .2s;
    }
    .gamecp-open-panel-link:hover { background: rgba(var(--gamecp-accent-rgb), 0.2); color: #5eead4; border-color: var(--gamecp-accent); }

    /* Row of 4 buttons â€“ solid style like captura 2 */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-controls-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }
    .gamecp-control-form { display: inline-block; margin: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.65rem 1.25rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all .2s;
        text-decoration: none !important;
        font-family: inherit;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-btn-start {
        background: #22c55e;
        color: #fff;
    }
    .gamecp-btn-start:hover { background: #16a34a; filter: brightness(1.05); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-btn-stop {
        background: #ef4444;
        color: #fff;
    }
    .gamecp-btn-stop:hover { background: #dc2626; filter: brightness(1.05); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-btn-restart {
        background: #eab308;
        color: #1c1917;
    }
    .gamecp-btn-restart:hover { background: #ca8a04; filter: brightness(1.05); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-btn-reinstall {
        background: #3b82f6;
        color: #fff;
    }
    .gamecp-btn-reinstall:hover { background: #2563eb; filter: brightness(1.05); }

    /* Grid 3x3 tiles â€“ teal accent */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tiles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.75rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1.35rem 1rem;
        background: rgba(30, 41, 59, 0.5);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        color: var(--text) !important;
        text-decoration: none !important;
        transition: border-color .2s, background .2s, transform .2s;
        text-align: center;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile:hover {
        border-color: rgba(var(--gamecp-accent-rgb), 0.5);
        background: rgba(var(--gamecp-accent-rgb), 0.08);
        transform: translateY(-2px);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile-icon {
        font-size: 1.6rem;
        color: var(--gamecp-accent);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile-label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile-hint {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    /* Server Information â€“ horizontal tags + Connect box */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info {
        padding: 1.35rem;
        background: rgba(15, 23, 42, 0.5);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 12px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin: 0 0 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-title::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 1em;
        background: var(--gamecp-accent);
        border-radius: 2px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-item {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.6rem 1rem;
        background: rgba(30, 41, 59, 0.6);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.06);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-value {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-connect-wrap {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 0.85rem 1.1rem;
        background: rgba(var(--gamecp-accent-rgb), 0.12);
        border: 1px solid rgba(var(--gamecp-accent-rgb), 0.35);
        border-radius: 10px;
        cursor: pointer;
        transition: border-color .2s, background .2s;
    }
    .gamecp-connect-wrap:hover,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-connect-wrap.copied {
        border-color: var(--gamecp-accent);
        background: rgba(var(--gamecp-accent-rgb), 0.18);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-connect-icon {
        font-size: 0.9rem;
        color: var(--gamecp-accent);
        margin-bottom: 2px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-connect-wrap .gamecp-connect-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-connect-wrap .gamecp-connect-value {
        font-family: ui-monospace, monospace;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--gamecp-accent);
    }

    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0;
        margin-top: 1rem;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        overflow: hidden;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-stat {
        padding: 0.75rem 1rem;
        background: rgba(30, 41, 59, 0.4);
        border-right: 1px solid rgba(255,255,255,0.06);
    }
    .gamecp-stat:last-child { border-right: none; }
    .gamecp-stat-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
    .gamecp-stat-value { font-size: 0.9375rem; font-weight: 700; color: #fff; }
    .gamecp-stat-dim { font-weight: 500; color: var(--text-muted); font-size: 0.8rem; }

    /* ----- GameCP: override pentru template-ul implicit (layout vechi) â€“ culori Hoxta ----- */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-header {
        border-bottom-color: rgba(255,255,255,0.08);
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-header h3 {
        color: var(--text) !important;
        font-size: 1.15rem;
        font-weight: 700;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 9999px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge-success {
        background: rgba(34, 197, 94, 0.2);
        color: #4ade80;
    }
    .gamecp-wrapper .gamecp-badge-success .gamecp-badge-dot { background: #22c55e; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge-danger {
        background: rgba(239, 68, 68, 0.2);
        color: #f87171;
    }
    .gamecp-wrapper .gamecp-badge-danger .gamecp-badge-dot { background: #ef4444; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge-info {
        background: rgba(59, 130, 246, 0.2);
        color: #60a5fa;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge-warning {
        background: rgba(234, 179, 8, 0.2);
        color: #facc15;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-badge-muted {
        background: rgba(148, 163, 184, 0.15);
        color: #94a3b8;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-btn-panel {
        background: rgba(11, 191, 158, 0.15) !important;
        color: #0BBF9E !important;
        border: 1px solid rgba(11, 191, 158, 0.45);
        border-radius: 8px;
        padding: 0.5rem 1rem;
        font-weight: 600;
        text-decoration: none !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-btn-panel:hover {
        background: rgba(11, 191, 158, 0.25) !important;
        color: #5eead4 !important;
        border-color: #0BBF9E;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-connect {
        background: rgba(30, 41, 59, 0.7) !important;
        border: 1px solid rgba(25, 195, 255, 0.25);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-connect-label {
        color: var(--text-muted) !important;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-connect-value {
        color: var(--primary) !important;
        font-size: 1.1rem;
        font-weight: 700;
        font-family: ui-monospace, monospace;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-connect-action {
        color: var(--text-muted) !important;
        font-size: 0.8rem;
        margin-top: 4px;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-stats {
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1rem;
        background: transparent !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-stat {
        background: rgba(30, 41, 59, 0.5) !important;
        border-right: 1px solid rgba(255,255,255,0.06);
        padding: 0.85rem 1rem;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-stat-label {
        color: var(--text-muted) !important;
        font-size: 0.7rem;
        text-transform: uppercase;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-stat-value {
        color: var(--text) !important;
        font-size: 0.95rem;
        font-weight: 700;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-stat-dim {
        color: var(--text-muted) !important;
        font-weight: 500;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls {
        padding: 1rem 0;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn {
        padding: 0.55rem 1.1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        border: 1px solid transparent;
        transition: all .2s;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-success {
        background: rgba(34, 197, 94, 0.25);
        color: #4ade80;
        border-color: rgba(34, 197, 94, 0.45);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-success:hover {
        background: #22c55e;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-default {
        background: rgba(148, 163, 184, 0.15);
        color: #cbd5e1;
        border-color: rgba(148, 163, 184, 0.35);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-default:hover {
        background: rgba(148, 163, 184, 0.25);
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-danger {
        background: rgba(239, 68, 68, 0.25);
        color: #f87171;
        border-color: rgba(239, 68, 68, 0.45);
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-controls .gamecp-btn-danger:hover {
        background: #ef4444;
        color: #fff;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-footer {
        border-top-color: rgba(255,255,255,0.06);
        padding: 0.75rem 0;
        font-size: 0.8rem;
        color: var(--text-muted) !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-footer strong {
        color: #94a3b8 !important;
    }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-installing-hint {
        color: var(--text-muted);
    }

    /* Features */
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .features-section { padding: 2rem; margin-bottom: 2rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .features-title { font-size: 1.25rem; font-weight: 700; color: var(--hx-text) !important; margin: 0 0 1.5rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--hx-text) !important; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .feature-item i { color: var(--hx-primary) !important; font-size: 0.875rem; }

@media (max-width: 768px) {
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tiles { grid-template-columns: repeat(2, 1fr); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-server-info-grid { flex-direction: column; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-controls-row { flex-wrap: wrap; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-section-head { flex-direction: column; align-items: flex-start; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-actions-top { position: static; margin-bottom: 1rem; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-main { flex-direction: column; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-cards { grid-template-columns: 1fr; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-meta-card { min-width: 0; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .grid-two-cols { grid-template-columns: 1fr; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-grid,
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .cpanel-quick-grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dashboard { grid-template-columns: 1fr; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-compact { width: 100%; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-nav { flex-wrap: wrap; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-left { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tabs-right { margin-left: 0; flex-wrap: wrap; }
    body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar { flex-direction: column; align-items: flex-start; }
}

/* Service Details — contrast fix (Product Information + Account Actions) */
body.hxo-themed.page-clientareaproductdetails .service-detail-page {
    color: #e8eef5;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-page-title {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .service-page-subtitle {
    color: #7a8ba3 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-info-card,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-card,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .glass-card.info-card {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .info-card-title {
    color: #e8eef5 !important;
    border-bottom-color: rgba(30, 45, 71, 0.8) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .info-card-title i {
    color: #19c3ff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-row span:first-child {
    color: #7a8ba3 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .detail-row span:last-child {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a {
    color: #19c3ff !important;
    border-color: #19c3ff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a i {
    color: #19c3ff !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a:hover {
    color: #5ddbff !important;
    border-color: #5ddbff !important;
    background: rgba(25, 195, 255, 0.12) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .account-actions-list a:hover i {
    color: #5ddbff !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .btn-overview-upgrade {
    color: #19c3ff !important;
    border-color: #19c3ff !important;
}

/* ===== GameCP / Virtualizor VPS / Pterodactyl — panouri modul ===== */
body.hxo-themed.page-clientareaproductdetails {
    --gamecp-accent: #0bbf9e;
    --gamecp-accent-rgb: 11, 191, 158;
    --ptero-accent: #4f7cff;
    --ptero-accent-rgb: 79, 124, 255;
    --vps-accent: #19c3ff;
}

body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-pterodactyl .product-overview-icon {
    background: rgba(79, 124, 255, 0.15) !important;
    border-color: rgba(79, 124, 255, 0.35) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-pterodactyl .product-overview-icon i {
    color: #6b9fff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .badge-pill.badge-pterodactyl {
    background: rgba(79, 124, 255, 0.35) !important;
    color: #fff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-virtualizor .product-overview-icon {
    background: rgba(25, 195, 255, 0.12) !important;
    border-color: rgba(25, 195, 255, 0.35) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .product-overview-card-virtualizor .product-overview-icon i {
    color: #19c3ff !important;
}

/* GameCP panel */
body.hxo-themed.page-clientareaproductdetails #gamecpManagerPanel.gamecp-wrapper,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-section-title,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper h1,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper h2,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper h3,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper h4 {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper p,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper span,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper label,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper td,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper th {
    color: #c5d4e3 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper a:not(.gamecp-btn):not(.btn) {
    color: #19c3ff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-wrapper .gamecp-tile {
    color: #e8eef5 !important;
    border-color: rgba(11, 191, 158, 0.35) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-tile:hover {
    border-color: var(--gamecp-accent) !important;
    color: #fff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-open-panel-link {
    color: var(--gamecp-accent) !important;
    border-color: rgba(11, 191, 158, 0.5) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-alert-success {
    color: #6ee7b7 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .gamecp-alert-error {
    color: #fca5a5 !important;
}

/* Pterodactyl panel */
body.hxo-themed.page-clientareaproductdetails #pterodactylManagerPanel.pterodactyl-wrapper,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper {
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(79, 124, 255, 0.28) !important;
    border-radius: 14px;
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .pterodactyl-panel-body,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .module-panel-body {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .card,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .panel,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .well {
    background: rgba(16, 26, 44, 0.85) !important;
    border: 1px solid rgba(79, 124, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .card-header,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .panel-heading {
    background: transparent !important;
    border-bottom: 1px solid rgba(79, 124, 255, 0.15) !important;
    color: #a5b4fc !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .btn-primary,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper a.btn-primary {
    background: linear-gradient(135deg, #4f7cff 0%, #2d5ae0 100%) !important;
    color: #fff !important;
    border: none !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper .btn-default,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper a.btn-default {
    background: rgba(16, 26, 44, 0.9) !important;
    color: #e8eef5 !important;
    border: 1px solid rgba(139, 156, 181, 0.45) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .pterodactyl-wrapper a:not(.btn) {
    color: #6b9fff !important;
}

/* Virtualizor VPS panel */
/* Virtualizor module auto-iframe — ascuns pe pagina Hoxta (folosim API + butoane custom) */
body.hxo-themed.page-clientareaproductdetails #virtualizor_load_div,
body.hxo-themed.page-clientareaproductdetails #virtualizor_manager,
body.hxo-themed.page-clientareaproductdetails .progress-bar-value {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

body.hxo-themed.page-clientareaproductdetails #vpsManagerPanel.vps-manager-panel,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-manager-panel {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-manager-panel .info-card-title,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-controls-title,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-title,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-title {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-spec-label,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .meta-card-label,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-meta,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-native-chart-mono {
    color: #7a8ba3 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-spec-value,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-card-value,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-bar-online {
    color: #e8eef5 !important;
}
/* VPS controls — outline (captură 1), nu butoane pline */
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn {
    background: transparent !important;
    border: 1px solid !important;
    opacity: 0.9;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn:hover:not(:disabled) {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-start {
    color: #22c55e !important;
    border-color: #22c55e !important;
    background: transparent !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-stop {
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    background: transparent !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-restart {
    color: #f59e0b !important;
    border-color: #f59e0b !important;
    background: transparent !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-reinstall {
    color: #19c3ff !important;
    border-color: #19c3ff !important;
    background: transparent !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn {
    color: #7a8ba3 !important;
    border-color: rgba(25, 195, 255, 0.2) !important;
    background: transparent !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn.active,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn:hover {
    color: #e8eef5 !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
    background: rgba(25, 195, 255, 0.08) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn {
    background: rgba(30, 45, 71, 0.55) !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    color: #19c3ff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn:hover:not(:disabled) {
    border-color: rgba(25, 195, 255, 0.45) !important;
    color: #5ddbff !important;
    background: rgba(25, 195, 255, 0.1) !important;
    transform: translateY(-1px);
}
/* Panou VPS — containere ca în tema veche (captură 1) */
body.hxo-themed.page-clientareaproductdetails #vpsManagerPanel.vps-manager-panel,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-manager-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .glass-card {
    background: rgba(15, 23, 42, 0.85) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .glass-card:hover {
    border-color: rgba(25, 195, 255, 0.28) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .vps-spec-item {
    background: rgba(30, 45, 71, 0.5) !important;
    border: 1px solid rgba(148, 163, 184, 0.18) !important;
    transition: border-color 0.2s ease;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .vps-spec-item:hover {
    border-color: rgba(25, 195, 255, 0.25) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .vps-dash-native-chart.vps-dash-card,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .vps-dash-react-chart.vps-dash-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-classic-wrap .vps-native-chart {
    background: rgba(22, 34, 58, 0.92) !important;
    border: 1px solid rgba(148, 163, 184, 0.14) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22) !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-account-btn,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-tab-btn {
    cursor: pointer;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn {
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-quick-btn {
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-ctrl-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-progress-fill,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-dash-progress-disk {
    background: #f59e0b !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-pw-visible {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-on {
    color: #22c55e !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .vps-2fa-off {
    color: #7a8ba3 !important;
}

/* Generic module panel (fallback) */
body.hxo-themed.page-clientareaproductdetails #modulePanel.module-panel,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel {
    padding: 1.75rem;
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(25, 195, 255, 0.18) !important;
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-title {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-title i {
    color: #19c3ff !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-body,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-body .card,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .module-panel-body .panel {
    color: #e8eef5 !important;
    background: rgba(16, 26, 44, 0.85) !important;
    border-color: rgba(30, 45, 71, 0.8) !important;
}

/* Change password / hostname cards — toate modulele */
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card {
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card label,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card .changehostname-label,
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card .reinstall-os-intro {
    color: #c5d4e3 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card .form-control {
    background: rgba(20, 32, 58, 0.9) !important;
    border-color: rgba(35, 55, 88, 0.95) !important;
    color: #e8eef5 !important;
}
body.hxo-themed.page-clientareaproductdetails .service-detail-page .changepw-card .btn-outline {
    color: #c5d4e3 !important;
    border-color: rgba(139, 156, 181, 0.45) !important;
    background: transparent !important;
}

/* ============================================================
   98. Dashboard Hoxta veche — products.css + dashboard.css (scoped)
   ============================================================ */
.hxo-dashboard .hxo-dash-viewall {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hx-primary) !important;
    text-decoration: none !important;
}

.hxo-dashboard .hxo-dash-viewall:hover {
    color: var(--hx-primary-hover) !important;
}

.hxo-dashboard .services-list-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hxo-dashboard .service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 26, 44, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px;
    transition: 0.2s;
    text-decoration: none !important;
    color: var(--hx-text) !important;
}

.hxo-dashboard a.service-card:hover,
.hxo-dashboard .service-card:hover {
    background: rgba(20, 32, 52, 0.7) !important;
    border-color: rgba(25, 195, 255, 0.12) !important;
}

.hxo-dashboard .service-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #19c3ff;
    font-size: 1rem;
}

.hxo-dashboard .service-card-body {
    flex: 1;
    min-width: 0;
}

.hxo-dashboard .service-card-label {
    font-size: 0.875rem;
    color: var(--hx-text-muted);
    margin-bottom: 2px;
}

.hxo-dashboard .service-card-label .font-mono {
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    color: #e8eef5;
    font-weight: 500;
}

.hxo-dashboard .service-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--hx-text-muted);
}

.hxo-dashboard .service-card-id {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    color: #19c3ff !important;
    font-weight: 600;
}

.hxo-dashboard .service-card-price {
    color: #c5d3e0 !important;
}

.hxo-dashboard .service-card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hxo-dashboard .status-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.hxo-dashboard .status-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.hxo-dashboard .dashboard-grid .service-card .status-badge.status-open {
    background: rgba(34, 197, 94, 0.18) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
}

.hxo-dashboard .dashboard-grid .service-card .status-badge.status-answered {
    background: rgba(25, 195, 255, 0.12) !important;
    color: #19c3ff !important;
    border: 1px solid rgba(25, 195, 255, 0.35) !important;
}

.hxo-dashboard .dashboard-grid .service-card .status-badge.status-customer-reply {
    background: rgba(249, 115, 22, 0.12) !important;
    color: #fb923c !important;
    border: 1px solid rgba(249, 115, 22, 0.35) !important;
}

.hxo-dashboard .service-card .status-badge:not(.status-badge-active):not(.status-answered):not(.status-open):not(.status-customer-reply) {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(30, 45, 71, 0.5) !important;
    color: var(--hx-text-muted) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hxo-dashboard .service-card .btn-gear {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(30, 45, 71, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: 0.2s;
}

.hxo-dashboard .service-card .btn-gear:hover {
    background: rgba(25, 195, 255, 0.1);
    border-color: rgba(25, 195, 255, 0.3);
}

.hxo-dashboard .dashboard-grid .service-card .btn-gear i {
    font-size: 0.9rem;
    color: #19c3ff;
}

.hxo-dashboard .empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--hx-text-muted);
}

.hxo-dashboard .empty-state .hxo-dash-viewall {
    display: inline-block;
    margin-top: 0.5rem;
}

/* ============================================================
   99. Dashboard clientarea.php — captură 2 (override theme.css WHMCS)
   Badge-uri solide .status-* din Nexus → pill conturat Hoxta
   ============================================================ */
body.hxo-shell .hxo-dashboard .status-badge,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    border: 1px solid transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

body.hxo-shell .hxo-dashboard .status-badge-active,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge-active,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge-active {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

body.hxo-shell .hxo-dashboard .status-badge.status-answered,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-answered,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-answered,
body.hxo-shell .hxo-dashboard .status-badge.status-answer,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-answer,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-answer {
    background: rgba(25, 195, 255, 0.12) !important;
    color: #19c3ff !important;
    border-color: rgba(25, 195, 255, 0.45) !important;
}

body.hxo-shell .hxo-dashboard .status-badge.status-open,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-open,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-open,
body.hxo-shell .hxo-dashboard .status-badge.status-active,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-active,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-active,
body.hxo-shell .hxo-dashboard .status-badge.status-completed,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-completed,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-completed {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

body.hxo-shell .hxo-dashboard .status-badge.status-customer-reply,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-customer-reply,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-customer-reply,
body.hxo-shell .hxo-dashboard .status-badge.status-customerreply,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-customerreply,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-customerreply {
    background: rgba(249, 115, 22, 0.12) !important;
    color: #fb923c !important;
    border-color: rgba(249, 115, 22, 0.4) !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-closed,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-closed,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-onhold,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-onhold,
body.hxo-shell.page-clientareahome .hxo-dashboard .status-badge.status-inprogress,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .status-badge.status-inprogress {
    background: rgba(30, 45, 71, 0.55) !important;
    color: #9cb3cc !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Servicii: domeniu alb, #id cyan, ciclu gri (captură 2) */
body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-services .service-card-label .font-mono,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-services .service-card-label .font-mono {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-services .service-card-meta,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-services .service-card-meta {
    margin-top: 2px;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-services .service-card-id,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-services .service-card-id {
    color: #19c3ff !important;
    font-weight: 700 !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-services .service-card-price,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-services .service-card-price {
    color: #c5d3e0 !important;
}

/* Tichete: subiect alb, #tid cyan */
body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-tickets .service-card-label,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-tickets .service-card-label {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-tickets .service-card-id,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-tickets .service-card-id {
    color: #19c3ff !important;
    font-weight: 700 !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-tickets .service-card-price,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-tickets .service-card-price {
    color: var(--hx-text-muted) !important;
}

/* Rânduri listă — cutie închisă ca în captură 2 */
body.hxo-shell.page-clientareahome .hxo-dashboard .service-card.service-item,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .service-card.service-item,
body.hxo-shell.page-clientareahome .hxo-dashboard a.service-card.service-item,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard a.service-card.service-item {
    background: rgba(16, 26, 44, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
}

/* Quick Actions — butoane mari cyan */
body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-quick .quick-actions,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-quick .quick-actions {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-quick .action-btn,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-quick .action-btn {
    min-height: 108px !important;
    background: rgba(16, 26, 44, 0.65) !important;
    border: 1px solid rgba(30, 45, 71, 0.9) !important;
    color: #19c3ff !important;
}

body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-quick .action-btn i,
body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-quick .action-btn span,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-quick .action-btn i,
body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-quick .action-btn span {
    color: #19c3ff !important;
}

/* Grid 2 coloane — panouri mijloc (doar desktop) */
@media (min-width: 993px) {
    body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-panels.dashboard-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ============================================================
   100. Dashboard — ascunde Nexus implicit + override final
   (fost hoxta-dashboard.css + pages/dashboard.css + products.css)
   ============================================================ */
body.hxo-shell.page-clientareahome .hoxta-content .tiles,
body.hxo-shell.page-homepage.is-logged-in .hoxta-content .tiles,
body.hxo-shell.page-clientareahome .hoxta-content .client-home-cards,
body.hxo-shell.page-homepage.is-logged-in .hoxta-content .client-home-cards {
    display: none !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    margin: 0 0 1.5rem 0 !important;
}

@media (min-width: 1200px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card {
    padding: 1.25rem !important;
    background: rgba(16, 26, 44, 0.55) !important;
    border: 1px solid rgba(30, 45, 71, 0.85) !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 195, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 195, 255, 0.4) !important;
    box-shadow: 0 12px 30px rgba(25, 195, 255, 0.15);
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card:hover::before {
    opacity: 1;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card:hover .stat-icon {
    transform: scale(1.08);
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-content {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    position: relative;
    z-index: 1;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    font-size: 1.125rem !important;
    transition: transform 0.3s ease;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.green {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.18) !important;
    border: 1px solid rgba(34, 197, 94, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.yellow {
    color: #eab308 !important;
    background: rgba(234, 179, 8, 0.18) !important;
    border: 1px solid rgba(234, 179, 8, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.red {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.18) !important;
    border: 1px solid rgba(239, 68, 68, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.blue {
    color: #19c3ff !important;
    background: rgba(25, 195, 255, 0.15) !important;
    border: 1px solid rgba(25, 195, 255, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-value {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-label {
    font-size: 0.875rem !important;
    color: #7a8ba3 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .dashboard-grid .glass-card,
body.hxo-shell .hoxta-content .hxo-dashboard > .glass-card.hxo-dash-quick {
    padding: 0 !important;
    background: rgba(16, 26, 44, 0.55) !important;
    border: 1px solid rgba(30, 45, 71, 0.85) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-header {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid rgba(30, 45, 71, 0.8) !important;
    background: linear-gradient(180deg, rgba(25, 195, 255, 0.05) 0%, rgba(10, 18, 34, 0.2) 100%) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-header .card-title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-viewall {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #19c3ff !important;
    text-decoration: none !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-body {
    padding: 1.25rem !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .services-list-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .service-card.service-item,
body.hxo-shell .hoxta-content .hxo-dashboard a.service-card.service-item {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    background: rgba(16, 26, 44, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    color: #e8eef5 !important;
    text-decoration: none !important;
    transition: 0.2s;
}

body.hxo-shell .hoxta-content .hxo-dashboard a.service-card.service-item:hover,
body.hxo-shell .hoxta-content .hxo-dashboard .service-card.service-item:hover {
    background: rgba(20, 32, 52, 0.7) !important;
    border-color: rgba(25, 195, 255, 0.12) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .service-card-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid rgba(25, 195, 255, 0.35) !important;
    border-radius: 8px !important;
    background: rgba(10, 18, 34, 0.45) !important;
    color: #19c3ff !important;
    font-size: 1rem !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .service-card-body {
    flex: 1;
    min-width: 0;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .font-mono {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-id {
    color: #19c3ff !important;
    font-weight: 700 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-tickets .service-card-label {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-tickets .service-card-id {
    color: #19c3ff !important;
    font-weight: 700 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge-active {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    background-image: none !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    border: 1px solid transparent !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge-active {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 4px;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-answered,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-answer {
    background: rgba(25, 195, 255, 0.12) !important;
    color: #19c3ff !important;
    border-color: rgba(25, 195, 255, 0.35) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-open,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-active {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-customer-reply,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-customerreply {
    background: rgba(249, 115, 22, 0.12) !important;
    color: #fb923c !important;
    border-color: rgba(249, 115, 22, 0.35) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .btn-gear {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(30, 45, 71, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .btn-gear:hover {
    background: rgba(25, 195, 255, 0.1) !important;
    border-color: rgba(25, 195, 255, 0.3) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .btn-gear i {
    color: #19c3ff !important;
    font-size: 0.9rem !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .quick-actions {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    min-height: 108px !important;
    padding: 1.5rem 1rem !important;
    background: rgba(16, 26, 44, 0.65) !important;
    border: 1px solid rgba(30, 45, 71, 0.9) !important;
    border-radius: 12px !important;
    color: #19c3ff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn i,
body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn span {
    color: #19c3ff !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn i {
    font-size: 1.5rem !important;
}

@media (max-width: 1024px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .quick-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
        grid-template-columns: 1fr !important;
    }
    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .quick-actions {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================================
   101. Dashboard — fix final captură Hoxta (bate Nexus + sec. 10)
   ============================================================ */
body.hxo-shell.page-clientareahome .primary-content,
body.hxo-shell.page-homepage.is-logged-in .primary-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.hxo-shell.page-clientareahome #main-body > .container > .row,
body.hxo-shell.page-homepage.is-logged-in #main-body > .container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 993px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    body.hxo-shell .hoxta-content .hxo-dashboard .dashboard-grid.hxo-dash-panels {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }
}

body.hxo-shell .hoxta-content .hxo-dashboard > .glass-card.hxo-dash-quick {
    margin-top: 0 !important;
    width: 100% !important;
}

/* Secțiunea 10 — stat-icon fără fundal colorat: forțat aici */
body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.green {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.18) !important;
    border: 1px solid rgba(34, 197, 94, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.yellow {
    color: #eab308 !important;
    background: rgba(234, 179, 8, 0.18) !important;
    border: 1px solid rgba(234, 179, 8, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.red {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.18) !important;
    border: 1px solid rgba(239, 68, 68, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .stat-icon.blue {
    color: #19c3ff !important;
    background: rgba(25, 195, 255, 0.15) !important;
    border: 1px solid rgba(25, 195, 255, 0.28) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-header .card-title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Nexus theme.css — card alb în primary-content (fără color pe rânduri servicii) */
body.hxo-shell .hoxta-content .hxo-dashboard .glass-card {
    background-color: rgba(16, 26, 44, 0.55) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .service-card.service-item,
body.hxo-shell .hoxta-content .hxo-dashboard a.service-card.service-item {
    background-color: rgba(16, 26, 44, 0.65) !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-tickets .service-card-label,
body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-tickets a.service-card .service-card-label {
    color: #fff !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-tickets .service-card-price {
    color: #7a8ba3 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .service-card-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

/* Badge-uri WHMCS Nexus (fundal solid) */
body.hxo-shell .hoxta-content .hxo-dashboard .label.status,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge,
body.hxo-shell .hoxta-content .hxo-dashboard span[class*="status-"] {
    background-image: none !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-in-progress,
body.hxo-shell .hoxta-content .hxo-dashboard .status-badge.status-inprogress {
    background: rgba(30, 45, 71, 0.55) !important;
    color: #9cb3cc !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 1024px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    body.hxo-shell .hoxta-content .hxo-dashboard .dashboard-grid.hxo-dash-panels {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   102. Your Services — captură 2 (products.css pe dashboard)
   ============================================================ */
body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label {
    font-size: 0.875rem !important;
    color: #8b9cb3 !important;
    margin-bottom: 2px !important;
    line-height: 1.35 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .font-mono,
body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .hxo-no-domain {
    display: block;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .font-mono {
    color: #fff !important;
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .hxo-no-domain {
    color: #8b9cb3 !important;
    font-weight: 500 !important;
    font-family: inherit !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 0.8rem !important;
    color: #8b9cb3 !important;
    margin-top: 0 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-id {
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace !important;
    color: #19c3ff !important;
    font-weight: 600 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-price {
    color: #c5d3e0 !important;
    font-weight: 500 !important;
}

body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-icon {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Order form: stiluri principale în templates/orderforms/standard_cart/css/style.css */

/* Pași order flow — fără tab-uri categorii produse (doar Select Plan) */
body.hxo-themed #order-standard_cart.hxo-domain-step #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-domain + #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-domain + .hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-configure + #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-configure + .hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-configure ~ #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-configure ~ .hxo-group-tabs-wrap,
body.hxo-themed #order-standard_cart .hxo-step-configure #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-checkout + #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-viewcart + #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-complete + #hxo-group-tabs-wrap,
body.hxo-themed #order-standard_cart.hxo-step-complete #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-viewcart #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-checkout #hxo-group-tabs-wrap,
body.hxo-themed .hxo-step-complete #hxo-group-tabs-wrap {
    display: none !important;
}

/* Pas domeniu — anulează theme.css Nexus (fundal alb pe .domain-selection-options) */
body.hxo-themed #order-standard_cart.hxo-domain-step .domain-selection-options,
body #order-standard_cart.hxo-domain-step .domain-selection-options {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .domain-selection-options .option,
body.hxo-themed #order-standard_cart.hxo-domain-step .domain-selection-options .option-selected,
body.hxo-themed #order-standard_cart.hxo-domain-step .domain-selection-options .option.option-selected,
body #order-standard_cart.hxo-domain-step .domain-selection-options .option,
body #order-standard_cart.hxo-domain-step .domain-selection-options .option-selected {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-domain-option-title,
body #order-standard_cart.hxo-domain-step .hxo-domain-option-title {
    color: #e2e8f0 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin: 0 0 1rem !important;
    display: block !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .domain-selection-options .btn,
body #order-standard_cart.hxo-domain-step .domain-selection-options .btn {
    margin-left: 0 !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-domain-panel,
body #order-standard_cart.hxo-domain-step .hxo-domain-panel {
    background: transparent !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .domain-input-group .row,
body #order-standard_cart.hxo-domain-step .domain-input-group .row {
    background: transparent !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-domain-search-box,
body #order-standard_cart.hxo-domain-step .hxo-domain-search-box {
    border: 1px solid rgba(34, 211, 238, 0.28) !important;
    background: rgba(6, 12, 24, 0.65) !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-menu,
body #order-standard_cart.hxo-domain-step .hxo-tld-menu {
    background: linear-gradient(180deg, rgba(7, 18, 33, 0.96) 0%, rgba(7, 18, 33, 0.96) 100%) !important;
    border-color: rgba(24, 53, 87, 0.92) !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-trigger,
body #order-standard_cart.hxo-domain-step .hxo-tld-trigger {
    background: linear-gradient(180deg, rgba(7, 18, 33, 0.96) 0%, rgba(7, 18, 33, 0.96) 100%) !important;
    border-color: rgba(24, 53, 87, 0.92) !important;
    color: #e2e8f0 !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-picker.is-open .hxo-tld-trigger,
body #order-standard_cart.hxo-domain-step .hxo-tld-picker.is-open .hxo-tld-trigger,
body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-option,
body #order-standard_cart.hxo-domain-step .hxo-tld-option {
    background: transparent !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-option:hover,
body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-tld-option.active,
body #order-standard_cart.hxo-domain-step .hxo-tld-option:hover,
body #order-standard_cart.hxo-domain-step .hxo-tld-option.active {
    background: rgba(255, 255, 255, 0.03) !important;
}

body.hxo-themed #order-standard_cart.hxo-domain-step #DomainSearchResults,
body #order-standard_cart.hxo-domain-step #DomainSearchResults {
    overflow: visible;
}

body.hxo-themed #order-standard_cart.hxo-domain-step .hxo-domain-footer-card,
body #order-standard_cart.hxo-domain-step .hxo-domain-footer-card {
    min-height: 72px;
}

/* Review Cart — bate theme.css Nexus (fundal alb la summary / promo tabs) */
body.hxo-themed #order-standard_cart.hxo-view-cart .view-cart-tabs,
body #order-standard_cart.hxo-view-cart .view-cart-tabs,
body.hxo-themed #order-standard_cart.hxo-view-cart .view-cart-tabs .tab-content,
body #order-standard_cart.hxo-view-cart .view-cart-tabs .tab-content {
    background: transparent !important;
    border: 0 !important;
}

body.hxo-themed #order-standard_cart.hxo-view-cart .order-summary,
body #order-standard_cart.hxo-view-cart .order-summary,
body.hxo-themed #order-standard_cart.hxo-view-cart .order-summary .summary-container,
body #order-standard_cart.hxo-view-cart .order-summary .summary-container {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
}

body.hxo-themed #order-standard_cart.hxo-view-cart .hxo-order-summary,
body #order-standard_cart.hxo-view-cart .hxo-order-summary {
    background: rgba(12, 22, 40, 0.72) !important;
    border: 1px solid rgba(34, 211, 238, 0.2) !important;
}

body.hxo-themed .hxo-step-viewcart .header-lined,
body.hxo-themed .hxo-step-viewcart .font-size-36,
body #order-standard_cart.hxo-view-cart ~ .header-lined {
    display: none !important;
}

body.hxo-themed .hxo-step-viewcart .hxo-steps,
body.hxo-themed #order-standard_cart.hxo-view-cart .hxo-steps,
body .hxo-step-viewcart .hxo-steps,
body #order-standard_cart.hxo-view-cart .hxo-steps {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: min(920px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.hxo-themed .hxo-step-viewcart .hxo-step,
body.hxo-themed #order-standard_cart.hxo-view-cart .hxo-step,
body .hxo-step-viewcart .hxo-step,
body #order-standard_cart.hxo-view-cart .hxo-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

body.hxo-themed .hxo-step-viewcart .hxo-step-line,
body.hxo-themed #order-standard_cart.hxo-view-cart .hxo-step-line,
body .hxo-step-viewcart .hxo-step-line,
body #order-standard_cart.hxo-view-cart .hxo-step-line {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 24px !important;
    height: 2px !important;
}

/* Client area: coș full-width, fără wrapper WHMCS standard */
body.hxo-themed .main-content .hxo-step-viewcart,
body.hxo-themed .main-content #order-standard_cart.hxo-view-cart,
body .main-content .hxo-step-viewcart,
body .main-content #order-standard_cart.hxo-view-cart {
    width: 100% !important;
    max-width: 100% !important;
}

body.hxo-themed .main-content #order-standard_cart.hxo-view-cart > .row,
body.hxo-themed .main-content #order-standard_cart.hxo-view-cart .cart-body {
    display: none !important;
}

body.hxo-themed .hxo-step-viewcart #hxo-group-tabs-wrap {
    display: none !important;
}

/* Store /store/slug — tab-uri categorii (DEDICATE | WEBHOST | VPS | GAME) */
body.hxo-themed .hxo-group-tabs-wrap {
    margin: 0 auto 2rem;
    max-width: min(720px, 100%);
    display: flex;
    justify-content: center;
    padding: 0 0.75rem;
    width: 100%;
    box-sizing: border-box;
}
body.hxo-themed .hxo-group-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    max-width: 640px;
    background: #050a12;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid rgba(16, 26, 38, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 6px 24px rgba(0, 0, 0, 0.35);
    overflow-x: auto;
}
body.hxo-themed .hxo-group-tab {
    flex: 1 1 auto;
    min-width: max(4.75rem, 22%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    border: 1px solid transparent;
    color: #22d3ee !important;
    background: transparent;
}
body.hxo-themed .hxo-group-tab:hover {
    color: #a5f3fc !important;
    background: rgba(25, 195, 255, 0.06);
}
body.hxo-themed .hxo-group-tab.active {
    color: #67e8f9 !important;
    background: rgba(10, 22, 36, 0.75);
    border: 1px solid rgba(34, 211, 238, 0.55);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15);
}

/* ===== Pagini eroare (404, 403, 429) ===== */
body.hxo-themed:has(.hxo-error-page) {
    background: #0a1220 !important;
    background-color: #0a1220 !important;
}

body.hxo-themed:not(.hxo-shell):has(.hxo-error-page) #header.header,
body.hxo-themed:not(.hxo-shell):has(.hxo-error-page) .master-breadcrumb {
    display: none !important;
}

body.hxo-themed:has(.hxo-error-page) #main-body,
body.hxo-themed:has(.hxo-error-page) section#main-body,
body.hxo-themed:has(.hxo-error-page) .primary-content {
    background: #0a1220 !important;
    background-color: #0a1220 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.hxo-themed:has(.hxo-error-page) #main-body > .container,
body.hxo-themed:has(.hxo-error-page) #main-body > .container > .row,
body.hxo-themed:has(.hxo-error-page) .primary-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.hxo-themed #main-body:has(.hxo-error-page),
body.hxo-themed .primary-content:has(.hxo-error-page) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hxo-error-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(72vh, calc(100dvh - 12rem));
    padding: 2.5rem 1.25rem 3rem;
    box-sizing: border-box;
}

.hxo-error-page__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(520px 280px at 50% 18%, rgba(25, 195, 255, 0.14), transparent 70%),
        radial-gradient(400px 200px at 80% 85%, rgba(14, 165, 233, 0.08), transparent 65%);
}

.hxo-error-page__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(25, 195, 255, 0.18);
    background: linear-gradient(180deg, rgba(14, 24, 42, 0.92) 0%, rgba(9, 16, 30, 0.96) 100%);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hxo-error-page__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hx-text) !important;
    text-decoration: none !important;
}

.hxo-error-page__logo .logo-x {
    color: var(--hx-primary);
}

.hxo-error-page__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(25, 195, 255, 0.12);
    border: 1px solid rgba(25, 195, 255, 0.28);
    color: var(--hx-primary);
    font-size: 1.35rem;
}

.hxo-error-page__code {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 0.35rem;
    background: linear-gradient(180deg, #e8f7ff 0%, #19c3ff 55%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
}

.hxo-error-page__title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hx-text) !important;
}

.hxo-error-page__subtitle {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #b8d4ea !important;
}

.hxo-error-page__desc {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--hx-text-muted) !important;
}

.hxo-error-page__note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0 0 1.25rem;
    padding: 0.75rem 0.9rem;
    text-align: left;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #9fc0da !important;
    border-radius: 10px;
    background: rgba(25, 195, 255, 0.06);
    border: 1px solid rgba(25, 195, 255, 0.14);
}

.hxo-error-page__note i {
    margin-top: 0.15rem;
    color: var(--hx-primary);
    flex-shrink: 0;
}

.hxo-error-page__ref {
    display: inline-block;
    max-width: 100%;
    margin-top: 0.25rem;
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
    word-break: break-all;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.25);
    color: #cde9ff !important;
}

.hxo-error-page__perms {
    margin: 0 0 1.25rem;
    text-align: left;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hxo-error-page__perms-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hx-text-muted);
    margin-bottom: 0.5rem;
}

.hxo-error-page__perms-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--hx-text);
    font-size: 0.8125rem;
}

.hxo-error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.hxo-error-page__btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem !important;
    border-radius: 10px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

.hxo-error-page__btn--alt {
    background: rgba(30, 45, 71, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--hx-text) !important;
}

.hxo-error-page__btn--alt:hover {
    border-color: rgba(25, 195, 255, 0.35) !important;
    color: var(--hx-primary) !important;
}

@media (max-width: 480px) {
    .hxo-error-page__card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .hxo-error-page__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hxo-error-page__btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   103. Dashboard client — mobil (fix panouri + carduri servicii)
   ============================================================ */
@media (max-width: 992px) {
    body.hxo-shell.page-clientareahome .hoxta-content,
    body.hxo-shell.page-homepage.is-logged-in .hoxta-content {
        padding-left: max(0.75rem, env(safe-area-inset-left)) !important;
        padding-right: max(0.75rem, env(safe-area-inset-right)) !important;
        overflow-x: hidden;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    body.hxo-shell .hoxta-content .hxo-dashboard .dashboard-grid.hxo-dash-panels,
    body.hxo-shell.page-clientareahome .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    body.hxo-shell.page-homepage.is-logged-in .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    .hxo-dashboard .hxo-dash-panels.dashboard-grid,
    .hxo-dashboard .dashboard-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-panel,
    body.hxo-shell .hoxta-content .hxo-dashboard > .glass-card {
        min-width: 0 !important;
        width: 100% !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .stat-card.glass-card {
        padding: 1rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .stat-value {
        font-size: 1.45rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .stat-label {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-header {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.85rem 1rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .glass-card > .card-body {
        padding: 1rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card.service-item,
    body.hxo-shell .hoxta-content .hxo-dashboard a.service-card.service-item {
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        gap: 0.65rem 0.75rem !important;
        padding: 0.85rem 1rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-icon {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-body {
        flex: 1 1 calc(100% - 48px) !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-label,
    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-label .font-mono,
    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-services .service-card-label .font-mono {
        word-break: normal !important;
        overflow-wrap: anywhere !important;
        white-space: normal !important;
        line-height: 1.35 !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-meta {
        flex-wrap: wrap !important;
        gap: 0.35rem 0.65rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-actions {
        flex: 1 1 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        padding-top: 0.35rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .quick-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.65rem !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn {
        min-height: 88px !important;
        padding: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    body.hxo-shell .hoxta-content .hxo-dashboard .stats-grid {
        grid-template-columns: 1fr !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .service-card-body {
        flex: 1 1 100% !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .quick-actions {
        grid-template-columns: 1fr !important;
    }

    body.hxo-shell .hoxta-content .hxo-dashboard .hxo-dash-quick .action-btn {
        min-height: 72px !important;
    }
}

/* ===== Plan 3–6: Add funds, emails, quotes, domain addons, OAuth ===== */
.hxo-addfunds-page .hxo-addfunds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 920px;
}
.hxo-addfunds-dl { margin: 0; }
.hxo-addfunds-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hxo-addfunds-row dt { color: var(--text-muted); font-weight: 600; margin: 0; }
.hxo-addfunds-row dd { color: var(--text-primary); font-weight: 700; margin: 0; }
.hxo-addfunds-note { margin: 1rem 0 0; color: var(--text-muted); }
.hxo-addfunds-form .form-control,
.hxo-domain-addon-card .form-control {
    background: rgba(3, 8, 18, 0.85);
    border-color: rgba(22, 38, 66, 0.85);
    color: var(--text-primary);
}
.hxo-btn-primary-block { width: 100%; margin-top: 0.5rem; }

.hxo-emails-page .hxo-page-header,
.hxo-quotes-page .hxo-page-header {
    margin-bottom: 1.25rem;
}
.hxo-emails-page .table-hxo-emails-cards tbody tr {
    cursor: pointer;
}
.hxo-email-view-btn {
    border-radius: 999px;
}

.hxo-quotes-page .hxo-quote-dt-only { display: table-cell; }
.hxo-quotes-page .hxo-quote-page-main { display: none; }
@media (max-width: 991px) {
    .hxo-quotes-page .hxo-quote-dt-only { display: none !important; }
    .hxo-quotes-page .hxo-quote-page-main { display: table-cell !important; }
    .hxo-quotes-page #tableQuotesList tbody tr {
        display: block;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 0.35rem;
    }
}
.hxo-quote-main-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.hxo-quote-icon-box {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(25, 195, 255, 0.12); color: var(--accent);
}
.hxo-quote-id { font-weight: 800; color: #fff; }
.hxo-quote-dates-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.35rem; }
.hxo-quote-pill {
    font-size: 0.75rem; padding: 0.2rem 0.5rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.06); color: var(--text-muted);
}
.hxo-quote-page-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.35rem; flex-wrap: wrap; }
.hxo-quote-action-btn {
    width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04); color: var(--text-primary);
    display: inline-flex; align-items: center; justify-content: center;
}
.hxo-quote-dl-form { display: inline; margin: 0; }

.hxo-domain-addon-page { max-width: 720px; }
.hxo-domain-addon-card { padding: 1.5rem; }
.hxo-domain-addon-desc { color: var(--text-muted); line-height: 1.55; }
.hxo-back-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; }

body.hxo-view-quote-page .hxo-quote-accept-banner {
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 1rem;
}
body.hxo-view-quote-page .modal-content.glass-card {
    background: var(--card-bg, rgba(9, 21, 37, 0.98));
    border: 1px solid rgba(66, 96, 132, 0.45);
    color: var(--text-primary);
}
body.hxo-view-quote-page .modal-header,
body.hxo-view-quote-page .modal-footer {
    border-color: rgba(255, 255, 255, 0.08);
}
body.hxo-view-billingnote-page .hxo-items-card-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 800;
}
body.hxo-view-billingnote-page .hxo-ledger-card { margin-top: 1rem; }

body.hxo-oauth-page {
    background: #030812;
    color: #e8f4ff;
    font-family: Inter, system-ui, sans-serif;
}
body.hxo-oauth-page #header,
body.hxo-oauth-page #content,
body.hxo-oauth-page #footer {
    max-width: 640px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
body.hxo-oauth-page #header img { max-height: 48px; }
body.hxo-oauth-page #header p,
body.hxo-oauth-page #footer {
    color: #9bb8cf;
    font-size: 0.9rem;
}
body.hxo-oauth-page .btn-default {
    background: rgba(25, 195, 255, 0.12);
    border: 1px solid rgba(25, 195, 255, 0.35);
    color: #57ddff;
    border-radius: 10px;
}
body.hxo-oauth-page a { color: #57ddff; }

@media (max-width: 768px) {
    .hxo-addfunds-page .hxo-addfunds-grid { grid-template-columns: 1fr; }
}
