* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f4f7fb;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
}

.vx-dashboard {
    min-height: 100vh;
    display: flex;
}

.vx-sidebar {
    width: 245px;
    min-height: 100vh;
    padding: 24px 16px;
    background: linear-gradient(180deg, #171c2d 0%, #202841 100%);
    color: #fff;
}

.vx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 8px;
}

.vx-brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    font-size: 24px;
    font-weight: bold;
}

.vx-brand strong {
    display: block;
    font-size: 19px;
}

.vx-brand small {
    color: #aab4ca;
}

.vx-nav-title {
    margin: 24px 10px 10px;
    color: #77839e;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vx-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    padding: 12px 14px;
    border-radius: 11px;
    color: #d9e0ef;
    text-decoration: none;
    transition: .2s;
}

.vx-nav-link:hover,
.vx-nav-link.active {
    background: rgba(124, 58, 237, .24);
    color: #fff;
}

.vx-nav-icon {
    width: 22px;
    text-align: center;
    font-size: 18px;
}

.vx-main {
    width: calc(100% - 245px);
    padding: 28px;
}

.vx-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.vx-header h1 {
    margin: 0 0 5px;
    font-size: 28px;
}

.vx-header p {
    margin: 0;
    color: #6b7280;
}

.vx-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 999px;
    background: #e9fff2;
    color: #08783e;
    font-weight: bold;
}

.vx-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16c66a;
    box-shadow: 0 0 0 5px rgba(22, 198, 106, .14);
}

.vx-hero {
    display: grid;
    grid-template-columns: 1.6fr .8fr;
    gap: 20px;
    margin-bottom: 22px;
}

.vx-now-playing,
.vx-quick-status {
    border: 1px solid #e5eaf2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(27, 39, 67, .06);
}

.vx-now-playing {
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, #6d28d9, #2563eb);
}

.vx-overline {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .9px;
    text-transform: uppercase;
    opacity: .8;
}

.vx-track {
    margin-bottom: 8px;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.vx-track-sub {
    color: rgba(255,255,255,.78);
}

.vx-player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.vx-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.vx-button-light {
    background: #fff;
    color: #4c1d95;
}

.vx-button-glass {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;
}

.vx-quick-status {
    padding: 22px;
}

.vx-quick-status h3 {
    margin: 0 0 18px;
}

.vx-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #edf0f5;
}

.vx-stat-row:last-child {
    border-bottom: 0;
}

.vx-stat-row span {
    color: #70798c;
}

.vx-stat-row strong {
    text-align: right;
}

.vx-section {
    margin-bottom: 25px;
}

.vx-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 13px;
}

.vx-section-header h2 {
    margin: 0;
    font-size: 19px;
}

.vx-section-header small {
    color: #8992a6;
}

.vx-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.vx-card {
    min-height: 142px;
    padding: 18px;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    background: #fff;
    color: #172033;
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(27, 39, 67, .045);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vx-card:hover {
    transform: translateY(-3px);
    border-color: #c6b7ff;
    box-shadow: 0 14px 30px rgba(55, 38, 120, .11);
}

.vx-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ecff;
    font-size: 23px;
}

.vx-card.blue .vx-card-icon {
    background: #e7f2ff;
}

.vx-card.green .vx-card-icon {
    background: #e9fbf0;
}

.vx-card.orange .vx-card-icon {
    background: #fff3df;
}

.vx-card.red .vx-card-icon {
    background: #ffebeb;
}

.vx-card h3 {
    margin: 0 0 7px;
    font-size: 15px;
}

.vx-card p {
    margin: 0;
    color: #7a8396;
    font-size: 12px;
    line-height: 1.5;
}

.vx-new {
    display: inline-block;
    margin-left: 6px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 9px;
    font-weight: bold;
    vertical-align: middle;
}

.vx-footer {
    padding: 18px 0 4px;
    color: #8b93a5;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1100px) {
    .vx-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .vx-sidebar {
        display: none;
    }

    .vx-main {
        width: 100%;
        padding: 18px;
    }

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

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

@media (max-width: 520px) {
    .vx-header {
        align-items: flex-start;
        flex-direction: column;
    }

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

.vx-status-offline {
    background: #fff0f0;
    color: #b42318;
}

.vx-status-offline .vx-status-dot {
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239, 68, 68, .14);
}

.vx-status-online {
    background: #e9fff2;
    color: #08783e;
}

.vx-track-sub > div {
    margin-top: 6px;
}

.vx-live-time {
    margin-top: 12px !important;
    font-size: 11px;
    opacity: .72;
}

.vx-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vx-menu-group {
    width: 100%;
}

.vx-menu-toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #d9e0ef;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: .2s;
}

.vx-menu-toggle:hover,
.vx-menu-toggle.open {
    background: rgba(124, 58, 237, .20);
    color: #fff;
}

.vx-menu-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vx-menu-arrow {
    font-size: 16px;
    transition: transform .2s;
}

.vx-menu-toggle.open .vx-menu-arrow {
    transform: rotate(180deg);
}

.vx-submenu {
    display: none;
    padding: 5px 0 7px 48px;
}

.vx-submenu.open {
    display: block;
}

.vx-submenu a {
    display: block;
    position: relative;
    padding: 9px 10px;
    border-radius: 8px;
    color: #aeb8ce;
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
    transition: .2s;
}

.vx-submenu a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #56627c;
    transform: translateY(-50%);
}

.vx-submenu a:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}

.vx-submenu a:hover::before {
    background: #8b5cf6;
}

.vx-sidebar {
    overflow-y: auto;
}

.vx-sidebar::-webkit-scrollbar {
    width: 5px;
}

.vx-sidebar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.vx-simple-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vx-main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 11px 13px;
    border-radius: 12px;
    color: #d9e0ef;
    text-decoration: none;
    transition: .2s;
}

.vx-main-nav:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}

.vx-main-nav.active {
    background: linear-gradient(
        135deg,
        rgba(124,58,237,.42),
        rgba(37,99,235,.25)
    );
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.vx-main-nav .vx-nav-icon {
    width: 28px;
    flex: 0 0 28px;
    font-size: 20px;
}

.vx-main-nav span:last-child {
    min-width: 0;
}

.vx-main-nav strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.vx-main-nav small {
    display: block;
    overflow: hidden;
    color: #8490aa;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vx-main-nav.active small {
    color: #c8d1e7;
}

.vx-sidebar-footer {
    margin-top: 30px;
    padding: 14px 10px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.vx-sidebar-footer a {
    display: block;
    margin-bottom: 6px;
    color: #b9c4dc;
    font-size: 12px;
    text-decoration: none;
}

.vx-sidebar-footer a:hover {
    color: #fff;
}

.vx-sidebar-footer span {
    display: block;
    color: #69758f;
    font-size: 9px;
    line-height: 1.4;
}

.vx-module-tabs {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid #e4e9f2;
    border-radius: 13px;
    background: #fff;
}

.vx-module-tabs a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 9px;
    color: #667085;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: .2s;
}

.vx-module-tabs a:hover {
    background: #f2f4f8;
    color: #172033;
}

.vx-module-tabs a.active {
    background: #ede9fe;
    color: #6d28d9;
}

.vx-page-title {
    margin-bottom: 18px;
}

.vx-page-title h1 {
    margin: 0 0 6px;
    font-size: 27px;
}

.vx-page-title p {
    margin: 0;
    color: #768096;
}

.vx-info-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 22px;
}

.vx-info-box {
    padding: 16px;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    background: #fff;
}

.vx-info-box span {
    display: block;
    margin-bottom: 6px;
    color: #7d879b;
    font-size: 11px;
}

.vx-info-box strong {
    display: block;
    font-size: 18px;
}

@media (max-width: 900px) {
    .vx-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .vx-info-strip {
        grid-template-columns: 1fr;
    }
}

.vx-library-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.vx-action-primary,
.vx-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.vx-action-primary {
    background: linear-gradient(135deg, #6d28d9, #2563eb);
    color: #fff;
}

.vx-action-secondary {
    border: 1px solid #dfe5ef;
    background: #fff;
    color: #344054;
}

.vx-library-alert {
    display: none;
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 12px;
}

.vx-library-alert.error {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #b42318;
}

.vx-folder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 24px;
}

.vx-folder-card {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid #e3e8f1;
    border-radius: 14px;
    background: #fff;
    color: #172033;
    text-align: left;
    cursor: pointer;
    transition: .2s;
}

.vx-folder-card:hover {
    border-color: #b7a8ff;
    box-shadow: 0 10px 25px rgba(44, 35, 95, .08);
    transform: translateY(-2px);
}

.vx-folder-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f0ecff;
    color: #6d28d9;
    font-size: 21px;
}

.vx-folder-info {
    min-width: 0;
}

.vx-folder-info strong,
.vx-folder-info small {
    display: block;
}

.vx-folder-info strong {
    margin-bottom: 5px;
    font-size: 13px;
}

.vx-folder-info small {
    overflow: hidden;
    color: #7d879b;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vx-library-panel {
    overflow: hidden;
    border: 1px solid #e3e8f1;
    border-radius: 15px;
    background: #fff;
}

.vx-library-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 18px;
    border-bottom: 1px solid #edf0f5;
}

.vx-library-panel-header h2 {
    margin: 0;
    font-size: 16px;
}

.vx-library-search {
    width: 270px;
    max-width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dce2ec;
    border-radius: 9px;
    outline: none;
}

.vx-library-search:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .10);
}

.vx-library-table {
    width: 100%;
    border-collapse: collapse;
}

.vx-library-table th,
.vx-library-table td {
    padding: 12px 17px;
    border-bottom: 1px solid #eef1f5;
    font-size: 11px;
    text-align: left;
}

.vx-library-table th {
    background: #fafbfc;
    color: #667085;
    font-size: 10px;
    text-transform: uppercase;
}

.vx-library-table tr:last-child td {
    border-bottom: 0;
}

.vx-empty {
    padding: 30px !important;
    color: #8a94a7;
    text-align: center !important;
}

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

@media (max-width: 560px) {
    .vx-folder-grid {
        grid-template-columns: 1fr;
    }

    .vx-library-panel-header {
        align-items: stretch;
        flex-direction: column;
    }

    .vx-library-search {
        width: 100%;
    }
}


/* ================================================================
   SONIXSTREAM - CARD AO VIVO COMPACTO
   ================================================================ */

.vx-now-playing {
    padding: 20px 22px;
}

.vx-live-compact {
    color: #fff;
}

.vx-live-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vx-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 23px;
    padding: 0 9px;
    border-radius: 6px;
    background: #ef2b1f;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    box-shadow: 0 0 16px rgba(239, 43, 31, .30);
}

.vx-live-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: vx-live-pulse 1s ease-in-out infinite;
}

.vx-live-label {
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
}

.vx-live-main {
    display: grid;
    grid-template-columns: minmax(260px, .95fr) minmax(320px, 1.15fr);
    align-items: center;
    gap: 22px;
}

.vx-live-left {
    min-width: 0;
}

.vx-live-title {
    overflow: hidden;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vx-live-playlist {
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.vx-live-wave {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    overflow: hidden;
}

.vx-live-wave span {
    width: 4px;
    min-width: 3px;
    height: var(--vx-height, 45%);
    border-radius: 999px;
    background: linear-gradient(180deg, #ff4f9a, #ff9b2f);
    box-shadow: 0 0 5px rgba(255, 79, 154, .34);
    transform-origin: center;
    animation: vx-live-wave var(--vx-speed, .72s) ease-in-out infinite alternate;
}

.vx-live-wave span:nth-child(2n) {
    --vx-height: 76%;
    --vx-speed: .55s;
}

.vx-live-wave span:nth-child(3n) {
    --vx-height: 35%;
    --vx-speed: .91s;
}

.vx-live-wave span:nth-child(4n) {
    --vx-height: 92%;
    --vx-speed: .63s;
}

.vx-live-wave span:nth-child(5n) {
    --vx-height: 58%;
    --vx-speed: 1.02s;
}

.vx-live-wave span:nth-child(7n) {
    --vx-height: 24%;
    --vx-speed: .46s;
}

.vx-live-progress-row {
    display: grid;
    grid-template-columns: 55px 1fr 55px;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #fff;
    font-size: 10px;
}

.vx-live-progress-row strong:last-child {
    text-align: right;
}

.vx-live-progress {
    height: 7px;
    overflow: visible;
    border-radius: 999px;
    background: rgba(16, 29, 104, .46);
}

.vx-live-progress span {
    position: relative;
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #28d86f, #61ee94);
    transition: width 1s linear;
}

.vx-live-progress span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 7px rgba(10, 21, 73, .34);
    transform: translateY(-50%);
}

.vx-live-details {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 20px;
    margin-top: 10px;
}

.vx-live-remaining {
    color: rgba(255, 255, 255, .86);
    font-size: 11px;
}

.vx-live-next {
    min-width: 0;
    text-align: right;
}

.vx-live-next strong,
.vx-live-next span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vx-live-next strong {
    font-size: 11px;
}

.vx-live-next span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .74);
    font-size: 9px;
}

.vx-live-compact.is-offline .vx-live-badge {
    background: #667085;
    box-shadow: none;
}

.vx-live-compact.is-offline .vx-live-wave span {
    animation-play-state: paused;
    opacity: .35;
    transform: scaleY(.18);
}

@keyframes vx-live-wave {
    from {
        transform: scaleY(.18);
        opacity: .60;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes vx-live-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .40;
        transform: scale(.72);
    }
}

@media (max-width: 900px) {
    .vx-live-main {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vx-live-wave {
        height: 44px;
    }
}

@media (max-width: 620px) {
    .vx-live-title {
        font-size: 19px;
        white-space: normal;
    }

    .vx-live-wave span:nth-child(n+31) {
        display: none;
    }

    .vx-live-details {
        grid-template-columns: 1fr;
    }

    .vx-live-next {
        text-align: left;
    }
}

/* SONIXSTREAM ABAS CONSOLE COMPARTILHADAS */
.vx-module-tabs.vx-console-tabs {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px;
    overflow-x: auto;
    border: 1px solid #dce3ee;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f9 100%);
    box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(15, 23, 42, .06);
    scrollbar-width: thin;
}

.vx-module-tabs.vx-console-tabs a {
    position: relative;
    flex: 1 0 auto;
    min-width: 105px;
    padding: 18px 13px 12px;
    border: 1px solid #cfd7e5;
    border-bottom-color: #b4bfce;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #e9edf4 100%);
    box-shadow: 0 3px 0 #c2cad6, 0 5px 10px rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.vx-module-tabs.vx-console-tabs a::before {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, .14);
    content: "";
    transform: translateX(-50%);
}

.vx-module-tabs.vx-console-tabs a:hover {
    border-color: #9f8bff;
    color: #5b31d6;
    transform: translateY(-1px);
}

.vx-module-tabs.vx-console-tabs a:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #b7c0ce, 0 2px 5px rgba(15, 23, 42, .08);
}

.vx-module-tabs.vx-console-tabs a.active {
    border-color: #6941e8;
    background: linear-gradient(180deg, #7547ef 0%, #5930cf 100%);
    box-shadow: inset 0 2px 5px rgba(23, 9, 70, .2), 0 2px 0 #4321a7;
    color: #fff;
    transform: translateY(2px);
}

.vx-module-tabs.vx-console-tabs a.active::before {
    background: #42f59b;
    box-shadow: 0 0 5px #42f59b, 0 0 11px rgba(66, 245, 155, .85);
}

.vx-module-tabs.vx-console-tabs a.disabled {
    cursor: not-allowed;
    opacity: .48;
    box-shadow: 0 2px 0 #cdd4df;
}

.vx-module-tabs.vx-console-tabs a.disabled:hover {
    border-color: #cfd7e5;
    color: #334155;
    transform: none;
}

@media (max-width: 900px) {
    .vx-module-tabs.vx-console-tabs a { min-width: 112px; }
}

/* LOGIN PROPRIETÁRIO SEGURO */
.vx-login-page{min-height:100vh;background:radial-gradient(circle at 15% 15%,rgba(124,58,237,.34),transparent 34%),radial-gradient(circle at 90% 85%,rgba(6,182,212,.25),transparent 32%),#111728}
.vx-login-shell{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:28px 18px}
.vx-login-card{width:100%;max-width:460px;padding:34px;border:1px solid rgba(255,255,255,.2);border-radius:24px;background:rgba(255,255,255,.98);box-shadow:0 30px 80px rgba(0,0,0,.32)}
.vx-login-brand{display:flex;align-items:center;gap:13px;margin-bottom:34px}.vx-login-brand strong{display:block;font-size:21px}.vx-login-brand span{display:block;margin-top:3px;color:#718096;font-size:13px}
.vx-login-heading{margin-bottom:24px}.vx-login-heading h1{margin:8px 0;font-size:29px}.vx-login-heading p{margin:0;color:#667085;font-size:14px;line-height:1.55}.vx-login-security{color:#6038e6;font-size:11px;font-weight:800;letter-spacing:.12em}
.vx-login-alert{margin-bottom:18px;padding:13px 14px;border-radius:11px;background:#fff1f2;color:#a61b2b;font-size:13px}.vx-login-field{display:block;margin-bottom:17px}.vx-login-field span{display:block;margin-bottom:7px;font-size:14px;font-weight:700}
.vx-login-field input{width:100%;height:48px;padding:0 14px;border:1px solid #d5dcea;border-radius:11px;background:#fff;font-size:15px;outline:none}.vx-login-field input:focus{border-color:#6842e8;box-shadow:0 0 0 4px rgba(104,66,232,.12)}
.vx-login-button{width:100%;height:49px;margin-top:3px;border:0;border-radius:11px;background:linear-gradient(135deg,#7242eb,#315eea);color:#fff;font-size:15px;font-weight:800;cursor:pointer}.vx-login-button:hover{filter:brightness(1.06)}
.vx-login-note{margin-top:20px;padding:12px 13px;border-radius:10px;background:#eef7ff;color:#315f87;font-size:12px;line-height:1.5}
@media(max-width:520px){.vx-login-card{padding:26px 21px;border-radius:19px}.vx-login-heading h1{font-size:25px}}

/* SONIXSTREAM BOTAO SAIR */
.vx-sidebar{display:flex;flex-direction:column}
.vx-simple-menu{flex:0 0 auto}
.vx-account-footer{margin-top:auto;padding:18px 4px 4px}
.vx-account-footer .vx-account-email{display:block;margin:0 8px 10px;overflow:hidden;color:#9eabc3;font-size:11px;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}
.vx-account-footer .vx-logout-button{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;min-height:44px;margin:0;padding:11px 12px;border:1px solid rgba(255,255,255,.18);border-radius:11px;background:rgba(255,255,255,.07);color:#fff;font-size:13px;font-weight:700;text-decoration:none;transition:.2s}
.vx-account-footer .vx-logout-button b{font-size:18px;line-height:1;transform:rotate(180deg)}
.vx-account-footer .vx-logout-button span{display:inline;color:inherit;font-size:inherit}
.vx-account-footer .vx-logout-button:hover{border-color:rgba(248,113,113,.65);background:rgba(220,38,38,.18);color:#fff;transform:translateY(-1px)}
/* FIM SONIXSTREAM BOTAO SAIR */

/* SONIXSTREAM_LOGO_SIDEBAR */
.sonixstream-logo-sidebar{display:flex;align-items:center;justify-content:center;padding:8px 10px!important}.sonixstream-logo-sidebar img{display:block;width:100%;max-width:190px;height:auto}

/* SONIXSTREAM_LOGO_BRANCA */
.sonixstream-logo-sidebar img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
