:root {
    --color-ink: #191919;
    --color-canvas: #f2f2f2;
    --color-panel: #ffffff;
    --color-accent: #c1fc02;
    --color-muted: #efefef;
    --color-watermark: rgba(25, 25, 25, 0.045);
    --color-line: rgba(25, 25, 25, 0.08);
    --color-line-strong: rgba(25, 25, 25, 0.18);
    --color-text-muted: rgba(25, 25, 25, 0.48);
    --color-avatar-start: #f7d7c2;
    --color-avatar-end: #dfe8ef;
    --color-positive: #63ef84;
    --shadow-soft: 0 20px 80px rgba(25, 25, 25, 0.08);
    --radius-panel: 28px;
    --radius-control: 999px;
}

* {
    box-sizing: border-box;
}

.brand-mark {
    position: relative;
    width: 42px;
    height: 22px;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    top: 5px;
    width: 24px;
    height: 12px;
    border: 5px solid var(--color-ink);
    border-radius: 7px;
}

.brand-mark::before {
    left: 0;
    transform: rotate(-6deg);
}

.brand-mark::after {
    right: 0;
    transform: rotate(6deg);
}

.side-nav {
    position: sticky;
    top: 16px;
    display: none;
    width: 52px;
    height: calc(100vh - 32px);
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}

.mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: color-mix(in srgb, var(--color-panel) 94%, transparent);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    scrollbar-width: none;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav-item {
    display: inline-flex;
    min-width: 74px;
    min-height: 54px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 18px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.mobile-nav-item em {
    max-width: 68px;
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-nav-item [data-icon] {
    width: 19px;
    height: 19px;
}

.mobile-nav-item.is-active {
    background: var(--color-ink);
    color: var(--color-panel);
}

.side-nav-menu {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding-top: 0;
}

.side-logo {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 999px;
    margin-left: 20px;
    margin-top: -8px;
}

.side-logo img {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.support-button {
    margin-bottom: 0;
}

.auth-logo {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    margin: 0 auto 28px;
}

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

.pill,
.icon-button,
.mini-button {
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    color: var(--color-ink);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pill {
    min-height: 52px;
    padding: 0 25px;
    border-radius: var(--radius-control);
    background: var(--color-panel);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.pill:hover,
.icon-button:hover,
.mini-button:hover {
    transform: translateY(-1px);
}

.pill.is-active,
.icon-button.is-active {
    background: var(--color-ink);
    color: var(--color-panel);
}

.pill.is-primary {
    background: var(--color-accent);
    color: var(--color-ink);
}

.icon-button.is-disabled {
    color: var(--color-text-muted);
    cursor: default;
    opacity: 0.55;
    transform: none;
}

.icon-button {
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: var(--radius-control);
    background: var(--color-panel);
    box-shadow: 0 10px 30px var(--color-line);
}

.menu-tooltip em {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    z-index: 30;
    transform: translateY(-50%) translateX(-6px);
    border-radius: var(--radius-control);
    background: var(--color-ink);
    color: var(--color-panel);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    padding: 9px 12px;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 160ms ease, transform 160ms ease;
}

.menu-tooltip:hover em,
.menu-tooltip:focus-visible em {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.mini-button {
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: var(--radius-control);
    background: var(--color-muted);
}

.avatar {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 3px solid var(--color-canvas);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-avatar-start), var(--color-avatar-end));
    font-size: 12px;
    font-weight: 800;
}

.user-menu {
    position: relative;
}

.user-avatar {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-panel);
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 30px var(--color-line);
}

.user-flyout {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    z-index: 30;
    width: 220px;
    transform: translateY(-6px) scale(0.98);
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: var(--color-panel);
    padding: 14px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.user-flyout.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.user-flyout strong,
.user-flyout span,
.user-flyout a {
    display: block;
}

.user-flyout strong {
    font-size: 14px;
    font-weight: 850;
}

.user-flyout span {
    margin-top: 5px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 750;
}

.user-flyout a {
    margin-top: 12px;
    border-radius: var(--radius-control);
    background: var(--color-ink);
    color: var(--color-panel);
    padding: 11px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 850;
}

.settings-menu {
    position: relative;
}

.settings-flyout {
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    z-index: 20;
    min-width: 180px;
    transform: translateY(-50%) scale(0.96);
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: var(--color-panel);
    padding: 10px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

@media (min-width: 1024px) {
    .side-nav {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }
}

@media (max-width: 1023px) {
    .app-shell {
        padding-bottom: 100px;
    }
}

.settings-flyout.is-open {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.settings-flyout a {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-control);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 750;
}

.settings-flyout a:hover {
    background: var(--color-muted);
}

.dashboard-card {
    overflow: hidden;
    border-radius: var(--radius-panel);
    background: var(--color-panel);
    padding: 22px;
    box-shadow: 0 1px 0 var(--color-line);
}

.auth-card {
    width: min(100%, 430px);
    border-radius: var(--radius-panel);
    background: var(--color-panel);
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.auth-card h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 750;
}

.auth-card p {
    margin-top: 8px;
    text-align: center;
    color: var(--color-text-muted);
    font-weight: 650;
}

.notice {
    border-radius: 18px;
    background: var(--color-accent);
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 800;
}

.notice a {
    text-decoration: underline;
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.card-head h2 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 650;
    line-height: 1;
}

.card-head p {
    margin-top: 7px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 500;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.metric-chip,
.tag {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: var(--radius-control);
    background: var(--color-muted);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 650;
}

.field {
    min-height: 50px;
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-control);
    background: var(--color-canvas);
    padding: 0 18px;
    font-weight: 600;
    outline: none;
}

.field:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent) 28%, transparent);
}

.password-field {
    position: relative;
    display: block;
}

.password-field .field {
    padding-right: 62px;
}

.password-field button {
    position: absolute;
    right: 8px;
    top: 50%;
    display: inline-grid;
    width: 40px;
    min-height: 36px;
    place-items: center;
    transform: translateY(-50%);
    border-radius: var(--radius-control);
    background: var(--color-panel);
}

.line-chart,
.bar-wave,
.dense-bars,
.response-bars {
    position: relative;
    display: flex;
    align-items: end;
    gap: 8px;
    min-height: 190px;
    border-bottom: 1px solid var(--color-line);
}

.line-chart {
    align-items: center;
    min-height: 230px;
}

.line-chart::before {
    content: "";
    position: absolute;
    inset: 28% 0 33%;
    background: repeating-linear-gradient(-52deg, var(--color-ink) 0 4px, transparent 4px 10px);
    clip-path: polygon(0 24%, 18% 52%, 35% 34%, 52% 45%, 68% 20%, 84% 12%, 100% 0, 100% 46%, 83% 54%, 67% 61%, 51% 79%, 35% 68%, 18% 88%, 0 65%);
    opacity: 0.96;
}

.line-chart::after {
    content: "";
    position: absolute;
    inset: 28% 0 33%;
    border-top: 3px solid var(--color-line-strong);
    clip-path: polygon(0 24%, 18% 52%, 35% 34%, 52% 45%, 68% 20%, 84% 12%, 100% 0, 100% 100%, 0 100%);
}

.chart-badge {
    position: absolute;
    left: 62%;
    top: 42%;
    z-index: 2;
    border-radius: var(--radius-control);
    background: var(--color-accent);
    padding: 8px 12px;
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 800;
}

.bar,
.dense-bar,
.response-bar {
    flex: 1;
    min-width: 8px;
    border-radius: 999px 999px 0 0;
    background: var(--color-ink);
}

.bar.is-muted,
.dense-bar.is-muted,
.response-bar.is-muted {
    background: var(--color-muted);
}

.bar.is-accent,
.response-bar.is-accent {
    background: var(--color-accent);
}

.response-bars {
    min-height: 130px;
    align-items: end;
}

.response-bar {
    border-radius: 16px;
}

.messages-volume {
    position: relative;
    min-height: 300px;
    padding-top: 22px;
}

.message-bars {
    display: flex;
    height: 220px;
    align-items: end;
    gap: 6px;
}

.message-bars span {
    flex: 1;
    min-width: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--color-muted);
}

.message-bars span.is-active {
    background: var(--color-ink);
}

.message-value-card {
    position: absolute;
    left: 31%;
    bottom: 52px;
    width: min(300px, 48%);
    border-radius: 18px;
    background: var(--color-panel);
    padding: 15px 17px;
    box-shadow: var(--shadow-soft);
}

.message-value-card strong {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 24px;
    font-weight: 850;
}

.message-value-card small,
.message-value-card span {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.message-value-card span {
    display: block;
    margin-top: 5px;
}

.month-axis {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    margin-top: 14px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.month-axis span {
    text-align: center;
}

.income-total {
    display: block;
    margin-top: 8px;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 850;
    line-height: 1;
}

.income-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.income-actions .mini-button {
    width: 100%;
}

.income-chart {
    position: relative;
    min-height: 185px;
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 22px;
}

.income-chart svg {
    width: 100%;
    height: 185px;
    overflow: visible;
}

.income-line {
    fill: none;
    stroke: var(--color-positive);
    stroke-width: 4;
}

.income-marker {
    fill: var(--color-positive);
    opacity: 0.28;
}

.income-chart circle {
    fill: var(--color-panel);
    stroke: var(--color-ink);
    stroke-width: 2;
}

.income-tooltip {
    position: absolute;
    left: 54%;
    top: 30px;
    border-radius: var(--radius-control);
    background: var(--color-ink);
    color: var(--color-panel);
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 850;
}

.portfolio-breakdown h3 {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 850;
}

.income-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-radius: 20px;
    background: var(--color-canvas);
    padding: 13px;
}

.income-row + .income-row {
    margin-top: 10px;
}

.income-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-muted);
    color: var(--color-ink);
    font-weight: 900;
}

.income-icon.is-dark {
    background: var(--color-ink);
    color: var(--color-panel);
}

.income-row strong,
.income-row span {
    display: block;
}

.income-row div > strong {
    font-size: 14px;
    font-weight: 850;
}

.income-row div > span {
    margin-top: 4px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 750;
}

.income-row-value {
    text-align: right;
}

.onboarding-guide {
    max-width: 820px;
}

.onboarding-steps {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.onboarding-steps li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: var(--color-canvas);
    padding: 12px;
}

.onboarding-steps li > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-ink);
    color: var(--color-panel);
    font-size: 13px;
    font-weight: 800;
}

.onboarding-steps a {
    color: var(--color-text-muted);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 650;
}

.onboarding-steps strong {
    color: var(--color-ink);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.whatsapp-setup {
    width: 100%;
}

.setup-slider {
    display: grid;
    gap: 16px;
}

.setup-slider-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.setup-slider-track {
    display: flex;
    transition: transform 260ms ease;
}

.setup-slider-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.setup-slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.setup-slider-controls .mini-button:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
}

.setup-slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.setup-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--color-line-strong);
    transition: width 180ms ease, background 180ms ease;
}

.setup-slider-dots button[aria-current="true"] {
    width: 28px;
    background: var(--color-ink);
}

.setup-connect-action {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.setup-step {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    border-radius: 20px;
    background: var(--color-canvas);
    padding: 14px;
}

.setup-step-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-ink);
    color: var(--color-panel);
    font-size: 14px;
    font-weight: 800;
}

.setup-step-body > span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    border-radius: var(--radius-control);
    background: var(--color-panel);
    padding: 0 12px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 750;
}

.setup-step h3 {
    margin-top: 10px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 750;
    line-height: 1.2;
}

.setup-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.setup-copy-grid div,
.setup-tip {
    border-radius: 16px;
    background: var(--color-panel);
    padding: 13px;
}

.setup-copy-grid h4 {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.setup-copy-grid p,
.setup-tip {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.55;
}

.setup-tip {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid color-mix(in srgb, var(--color-accent) 22%, var(--color-line));
    background: color-mix(in srgb, var(--color-accent) 8%, var(--color-panel));
}

.setup-tip [data-icon] {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--color-ink);
    opacity: 0.62;
}

.job-card {
    border-radius: 22px;
    background: var(--color-canvas);
    padding: 16px;
}

.job-card h3,
.application-row strong {
    display: block;
    font-size: 15px;
    font-weight: 750;
}

.job-card p,
.application-row span {
    display: block;
    margin-top: 4px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 600;
}

.company-dot {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-panel);
    color: var(--color-accent);
    font-weight: 900;
}

.application-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 18px;
    background: var(--color-canvas);
    padding: 13px 14px;
}

.application-row em {
    border-radius: var(--radius-control);
    background: var(--color-panel);
    padding: 7px 11px;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.users-table {
    display: grid;
    gap: 10px;
    overflow-x: auto;
}

.users-table-head,
.users-table-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 160px 120px 120px;
    min-width: 700px;
    align-items: center;
    gap: 14px;
}

.users-table-head {
    padding: 0 14px 4px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.users-table-row {
    border-radius: 22px;
    background: var(--color-canvas);
    padding: 13px 14px;
}

.user-cell {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.user-cell strong,
.user-cell span {
    display: block;
}

.user-cell strong {
    font-size: 15px;
    font-weight: 800;
}

.user-cell span {
    margin-top: 3px;
    overflow: hidden;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-pill {
    display: inline-flex;
    min-height: 32px;
    width: max-content;
    align-items: center;
    border-radius: var(--radius-control);
    background: var(--color-muted);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
}

.status-pill.is-on {
    background: var(--color-accent);
}

.toggle-row {
    display: grid;
    grid-template-columns: 70px 64px 1fr;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-control);
    background: var(--color-canvas);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 800;
}

.toggle-row input {
    appearance: none;
    position: relative;
    width: 56px;
    height: 30px;
    border-radius: 999px;
    background: var(--color-ink);
    cursor: pointer;
}

.toggle-row input::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--color-panel);
    transition: transform 160ms ease;
}

.toggle-row input:checked {
    background: var(--color-accent);
}

.toggle-row input:checked::after {
    transform: translateX(26px);
}

.toggle-row em {
    color: var(--color-text-muted);
    font-style: normal;
}

.row-actions {
    display: flex;
    gap: 8px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    background: rgba(25, 25, 25, 0.22);
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.modal-backdrop.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
}

.confirm-modal {
    width: min(100%, 460px);
    transform: translateY(8px) scale(0.98);
    border-radius: var(--radius-panel);
    background: var(--color-panel);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 160ms ease;
}

.modal-backdrop.is-open .confirm-modal {
    transform: translateY(0) scale(1);
}

[data-icon] {
    width: 18px;
    height: 18px;
    background: currentColor;
    display: inline-block;
}

[data-icon="dashboard"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='7' height='9' x='3' y='3' rx='1'/%3E%3Crect width='7' height='5' x='14' y='3' rx='1'/%3E%3Crect width='7' height='9' x='14' y='12' rx='1'/%3E%3Crect width='7' height='5' x='3' y='16' rx='1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="products"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="seller"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M3 21a6 6 0 0 1 12 0M16 11l2 2 4-5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="channels"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='m8.6 10.5 6.8-4M8.6 13.5l6.8 4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="messages"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="orders"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h8.8a2 2 0 0 0 2-1.6L22 6H6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="reports"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 19V5M4 19h16M8 16v-5M12 16V8M16 16v-7'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="dashboard"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='7' height='9' x='3' y='3' rx='1'/%3E%3Crect width='7' height='5' x='14' y='3' rx='1'/%3E%3Crect width='7' height='9' x='14' y='12' rx='1'/%3E%3Crect width='7' height='5' x='3' y='16' rx='1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="products"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="seller"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M3 21a6 6 0 0 1 12 0M16 11l2 2 4-5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="channels"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='m8.6 10.5 6.8-4M8.6 13.5l6.8 4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="messages"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="orders"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h8.8a2 2 0 0 0 2-1.6L22 6H6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="reports"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 19V5M4 19h16M8 16v-5M12 16V8M16 16v-7'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="grid"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='7' height='7' x='3' y='3' rx='1'/%3E%3Crect width='7' height='7' x='14' y='3' rx='1'/%3E%3Crect width='7' height='7' x='14' y='14' rx='1'/%3E%3Crect width='7' height='7' x='3' y='14' rx='1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="mail"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="briefcase"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3Crect width='20' height='14' x='2' y='6' rx='2'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="calendar"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="folder"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="settings"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9.7 2.9 9.1 5a7.8 7.8 0 0 0-1.8 1L5.2 5.5 3 9.3l1.6 1.5a7.4 7.4 0 0 0 0 2.4L3 14.7l2.2 3.8 2.1-.5a7.8 7.8 0 0 0 1.8 1l.6 2.1h4.6l.6-2.1a7.8 7.8 0 0 0 1.8-1l2.1.5 2.2-3.8-1.6-1.5a7.4 7.4 0 0 0 0-2.4L21 9.3l-2.2-3.8-2.1.5a7.8 7.8 0 0 0-1.8-1l-.6-2.1Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="sliders"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M2 14h4M10 8h4M18 16h4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="plus"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M12 5v14'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="bell"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M10.3 21a1.94 1.94 0 0 0 3.4 0M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="bell-off"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m3 3 18 18M10.3 21a1.94 1.94 0 0 0 3.4 0M15.6 15.6H3s3-2 3-9a6 6 0 0 1 .7-2.8M9.7 3.3A6 6 0 0 1 18 8c0 2.1.3 3.8.8 5.1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="bell-off"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m3 3 18 18M10.3 21a1.94 1.94 0 0 0 3.4 0M15.6 15.6H3s3-2 3-9a6 6 0 0 1 .7-2.8M9.7 3.3A6 6 0 0 1 18 8c0 2.1.3 3.8.8 5.1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="search"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="chart"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 3v18h18M7 16v-5M12 16V7M17 16v-3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="download"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="upload"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="swap"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M16 3h5v5M4 20 21 3M21 16v5h-5M15 15l6 6M4 4l5 5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="swap-horizontal"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M7 7h13l-4-4M17 17H4l4 4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="clock"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="arrow"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="refresh"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16M3 12a9 9 0 0 1 15.74-6.26L21 8M3 21v-5h5M21 3v5h-5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="user"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M19 21a7 7 0 0 0-14 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="edit"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="trash"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h18M8 6V4h8v2M19 6l-1 14H6L5 6M10 11v6M14 11v6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="building"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 21h18M5 21V5l8-3v19M19 21V9l-6-2M9 9h.01M9 13h.01M9 17h.01M16 13h.01M16 17h.01'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="close"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="eye"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="eye-off"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m3 3 18 18M10.6 10.6A3 3 0 0 0 13.4 13.4M9.9 5.2A10.7 10.7 0 0 1 12 5c6.5 0 10 7 10 7a18 18 0 0 1-3.1 4.1M6.6 6.7C3.7 8.6 2 12 2 12s3.5 7 10 7a9.7 9.7 0 0 0 4.4-1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="eye"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="eye-off"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m3 3 18 18M10.6 10.6A3 3 0 0 0 13.4 13.4M9.9 5.2A10.7 10.7 0 0 1 12 5c6.5 0 10 7 10 7a18 18 0 0 1-3.1 4.1M6.6 6.7C3.7 8.6 2 12 2 12s3.5 7 10 7a9.7 9.7 0 0 0 4.4-1'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="support"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6M21 19a2 2 0 0 1-2 2h-2v-7h4ZM3 19a2 2 0 0 0 2 2h2v-7H3Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="support"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6M21 19a2 2 0 0 1-2 2h-2v-7h4ZM3 19a2 2 0 0 0 2 2h2v-7H3Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="info"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 4.1a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-1.1 4.1c0-.55.45-1 1-1h.2c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-.2a1 1 0 0 1-1-1v-3.8Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="info"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 4.1a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-1.1 4.1c0-.55.45-1 1-1h.2c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-.2a1 1 0 0 1-1-1v-3.8Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="chevron-left"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="chevron-left"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="chevron-right"] { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="chevron-right"] { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat; }

@media (max-width: 640px) {
    :root {
        --radius-panel: 22px;
    }

    .dashboard-card {
        padding: 18px;
    }

    .pill {
        min-height: 46px;
        padding: 0 17px;
        font-size: 14px;
    }

    .users-table-head {
        display: none;
    }

    .users-table-row {
        min-width: 0;
        grid-template-columns: 1fr;
    }

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

    .setup-slider-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .setup-slider-dots {
        justify-content: flex-start;
    }

    .setup-connect-action .pill {
        width: 100%;
        justify-content: center;
    }

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