.content {
    padding: 32px 34px 44px;
}

.page {
    animation: pageIn .2s ease;
}

.page-header {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.page-header h1 {
    font-size: clamp(22px, 3vw, 27px);
    line-height: 1.15;
}

.page-header p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.page-actions {
    display: flex;
    gap: 9px;
}

.primary-button,
.secondary-button,
.danger-button {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
}

.primary-button {
    border: 1px solid var(--accent);
    color: #fff;
    background: var(--accent);
}

.primary-button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--surface);
}

.secondary-button:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
    background: var(--surface-2);
}

.danger-button {
    border: 1px solid var(--red);
    color: #fff;
    background: var(--red);
}

.danger-button:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.compact {
    min-height: 40px;
    padding: 0 13px;
}

.full-width {
    width: 100%;
}

.text-button,
.view-all {
    padding: 4px;
    border: 0;
    color: var(--accent);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
}

.text-button:hover,
.view-all:hover {
    text-decoration: underline;
}

.stats-grid {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    min-width: 0;
    padding: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 17px;
}

.stat-icon.orange {
    color: var(--accent);
    background: var(--accent-soft);
}

.stat-icon.green {
    color: var(--green);
    background: var(--green-soft);
}

.stat-icon.yellow {
    color: var(--yellow);
    background: var(--yellow-soft);
}

.stat-icon.red {
    color: var(--red);
    background: var(--red-soft);
}

.stat-info {
    min-width: 0;
}

.stat-info>span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.stat-info strong {
    margin-top: 4px;
    display: block;
    font-size: 21px;
    line-height: 1.1;
}

.stat-info small {
    margin-top: 5px;
    display: block;
    overflow: hidden;
    color: var(--muted-2);
    font-size: 8.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.card-header {
    min-height: 70px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.card-header h2 {
    font-size: 14px;
}

.card-header p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.card-header select {
    height: 34px;
    padding: 0 9px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    background: var(--surface);
    font-size: 10px;
}

.dashboard-grid {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 20px;
}

.chart {
    min-height: 236px;
    padding: 12px 22px 0;
}

.chart-bars {
    height: 205px;
    padding: 0 2px 25px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 5px;
    border-bottom: 1px solid var(--border);
}

.bar-group {
    position: relative;
    height: 100%;
    min-width: 24px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
}

.bar {
    width: min(13px, 32%);
    min-height: 2px;
    border-radius: 5px 5px 0 0;
    transition: height .3s ease;
}

.bar.entry {
    background: var(--accent);
}

.bar.exit {
    background: var(--text);
    opacity: .85;
}

.bar-group>span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 8px;
    white-space: nowrap;
}

.bar-tooltip {
    position: absolute;
    top: -7px;
    left: 50%;
    z-index: 2;
    padding: 6px 7px;
    transform: translate(-50%, -100%);
    border-radius: 6px;
    color: #fff;
    background: #111;
    font-size: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}

.bar-group:hover .bar-tooltip {
    opacity: 1;
}
.bar-group.active::before { content: ""; position: absolute; inset: -4px 1px 0; border: 1px solid var(--accent); border-radius: 7px 7px 0 0; background: var(--accent-soft); opacity: .55; }
.bar-group:focus-visible::before { content: ""; position: absolute; inset: -4px 1px 0; border: 2px solid var(--accent); border-radius: 7px 7px 0 0; }
.bar-group > .bar, .bar-group > span { position: relative; z-index: 1; }

.chart-empty {
    height: 205px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 11px;
}

.chart-legend {
    padding: 12px 20px 16px;
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 9px;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-legend i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-entry {
    background: var(--accent);
}

.legend-exit {
    background: var(--text);
}

.low-stock-list {
    padding: 0 20px 10px;
}

.stock-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.stock-item:first-child {
    border-top: 0;
}

.product-thumb,
.product-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 13px;
    font-weight: 700;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    min-width: 0;
    flex: 1;
}

.product-details strong,
.product-details span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-details strong {
    font-size: 10.5px;
}

.product-details span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8.5px;
}

.stock-quantity {
    font-size: 10px;
    font-weight: 700;
}

.danger-text {
    color: var(--red);
}

.warning-text {
    color: var(--yellow);
}

.table-card {
    overflow: hidden;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 1020px;
    border-collapse: collapse;
}

th {
    padding: 12px 17px;
    color: var(--muted);
    background: var(--surface-2);
    font-size: 9px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
}

td {
    padding: 13px 17px;
    border-top: 1px solid var(--border);
    font-size: 10.5px;
    vertical-align: middle;
}

tbody tr {
    transition: background .14s ease;
}

tbody tr:hover {
    background: var(--surface-2);
}

.table-product {
    min-width: 175px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-product strong,
.table-product span {
    display: block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-product strong {
    font-size: 10.5px;
}

.table-product span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8.5px;
}

.product-photo {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--accent);
    background: var(--accent-soft);
    object-fit: cover;
    font-weight: 700;
    cursor: zoom-in;
}

.product-photo:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.status,
.movement-badge,
.reserved-badge {
    padding: 5px 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    font-size: 8.5px;
    font-weight: 700;
    white-space: nowrap;
}

.status.normal {
    color: var(--green);
    background: var(--green-soft);
}

.status.low {
    color: var(--yellow);
    background: var(--yellow-soft);
}

.status.empty {
    color: var(--red);
    background: var(--red-soft);
}

.reserved-badge.yes {
    color: var(--yellow);
    background: var(--yellow-soft);
}

.reserved-badge.no {
    color: var(--muted);
    background: var(--surface-3);
}

.movement-badge.entry {
    color: var(--green);
    background: var(--green-soft);
}

.movement-badge.output {
    color: var(--red);
    background: var(--red-soft);
}

.movement-badge.reserve {
    color: var(--yellow);
    background: var(--yellow-soft);
}

.movement-badge.release {
    color: var(--blue);
    background: var(--blue-soft);
}

.movement-badge.adjustment {
    color: var(--purple);
    background: var(--purple-soft);
}

.quantity-positive {
    color: var(--green);
    font-weight: 700;
}

.quantity-negative {
    color: var(--red);
    font-weight: 700;
}

.actions-cell {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.icon-action {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--muted);
    background: var(--surface);
    font-size: 10px;
}

.icon-action:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.icon-action.danger:hover {
    color: var(--red);
    border-color: var(--red);
    background: var(--red-soft);
}

.action-button {
    min-height: 30px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    border-radius: 7px;
    font-size: 8.5px;
    font-weight: 700;
}

.action-button.entry {
    color: var(--green);
    background: var(--green-soft);
}

.action-button.output {
    color: var(--red);
    background: var(--red-soft);
}

.action-button.reserve {
    color: var(--yellow);
    background: var(--yellow-soft);
}

.action-button.release {
    color: var(--blue);
    background: var(--blue-soft);
}

.action-button:disabled {
    opacity: .42;
}

.toolbar {
    margin-bottom: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(145px, .7fr)) auto;
    gap: 9px;
}

.toolbar-search {
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface-2);
}

.toolbar-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.toolbar-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 10.5px;
}

.toolbar>select,
.toolbar>input[type="date"] {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    background: var(--surface);
    font-size: 10px;
}

.section-meta {
    min-height: 34px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
}

.bulk-actions {
    display: flex;
    gap: 10px;
}

.empty-state {
    min-height: 240px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
}

.empty-state>i {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 30px;
}

.empty-state strong {
    color: var(--text);
    font-size: 13px;
}

.empty-state span {
    margin-top: 7px;
    font-size: 10px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1.1fr) minmax(360px, .9fr);
    gap: 20px;
}

.form-card {
    align-self: start;
}

.padded-form {
    padding: 0 20px 22px;
}

.availability-panel {
    margin-bottom: 17px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface-2);
}

.availability-panel span {
    color: var(--muted);
    font-size: 9px;
}

.availability-panel strong {
    color: var(--accent);
    font-size: 12px;
    text-align: right;
}

.compact-panel {
    margin-bottom: 16px;
}

.field-help {
    margin: 5px 0 9px;
    color: var(--muted);
    font-size: 9px;
}

.form-group .stock-out-search {
    height: 40px;
    margin-bottom: 9px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface-2);
}

.form-group .stock-out-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group .stock-out-search input {
    min-width: 0;
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    font-size: 10.5px;
}

.form-group .stock-out-search input:focus {
    border: 0;
    box-shadow: none;
}

.stock-out-list {
    max-height: 330px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface-2);
}

.stock-out-item {
    min-height: 56px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.stock-out-item:first-child {
    border-top: 0;
}

.stock-out-item.unavailable {
    opacity: .55;
}

.stock-out-product {
    min-width: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    align-items: center;
    column-gap: 7px;
    cursor: pointer;
}

.stock-out-list .stock-out-product input {
    width: 12px;
    min-height: 12px;
    height: 12px;
    margin-right: 8px;
    padding: 0;
    grid-row: 1 / span 2;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    accent-color: var(--accent);
}

.stock-out-product span,
.stock-out-product small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-out-product span {
    font-size: 12.5px;
    font-weight: 700;
}

.stock-out-product small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10.5px;
}

.stock-out-quantity-wrap {
    width: 78px;
    display: block;
}

.stock-out-quantity-wrap>span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
}

.stock-out-list .stock-out-quantity {
    width: 100%;
    min-height: 29px;
    height: 29px;
    padding: 0 7px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    background: var(--surface);
    font-size: 10px;
}

.stock-out-quantity:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.timeline {
    padding: 0 20px 20px;
}

.timeline-item {
    position: relative;
    padding: 13px 0 13px 39px;
    border-top: 1px solid var(--border);
}

.timeline-item:first-child {
    border-top: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 13px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--red);
    background: var(--red-soft);
    font-size: 10px;
}

.timeline-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.timeline-main strong {
    overflow: hidden;
    font-size: 10.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timeline-main b {
    color: var(--red);
    font-size: 10px;
    white-space: nowrap;
}

.timeline-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8.5px;
}

.mini-stats-grid {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mini-stat {
    padding: 17px 19px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.mini-stat span {
    color: var(--muted);
    font-size: 9px;
}

.mini-stat strong {
    margin-top: 5px;
    display: block;
    font-size: 20px;
}

.alert-banner {
    margin-bottom: 18px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid color-mix(in srgb, var(--yellow) 30%, var(--border));
    border-radius: 10px;
    color: var(--yellow);
    background: var(--yellow-soft);
}

.alert-banner strong {
    font-size: 11px;
}

.alert-banner span {
    color: var(--muted);
    font-size: 9px;
}

.low-stock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.low-stock-product {
    overflow: hidden;
}

.low-stock-product-head {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.low-stock-product-head .product-thumb {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
}

.low-stock-product-head>div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.low-stock-product-head h3,
.low-stock-product-head p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.low-stock-product-head h3 {
    font-size: 11px;
}

.low-stock-product-head p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 8.5px;
}

.low-stock-level {
    padding: 0 18px 16px;
}

.level-meta {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 8.5px;
}

.level-meta strong {
    color: var(--text);
}

.progress {
    height: 7px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--surface-3);
}

.progress>i {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--yellow);
}

.progress.critical>i {
    background: var(--red);
}

.low-stock-actions {
    padding: 13px 18px;
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: var(--surface-2);
}

.low-stock-actions button {
    flex: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    padding: 18px;
}

.category-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.category-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--accent);
    background: var(--accent-soft);
}

.category-actions {
    display: flex;
    gap: 5px;
}

.category-card h3 {
    margin-top: 17px;
    font-size: 12px;
}

.category-card p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
}

.category-stats {
    margin-top: 17px;
    padding-top: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
}

.category-stats strong {
    color: var(--text);
}

.settings-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.users-layout {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
    gap: 20px;
}

.settings-card {
    align-self: start;
    overflow: hidden;
}

.settings-body {
    padding: 0 20px 20px;
}

.data-settings-card {
    grid-column: 1 / -1;
}

.data-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.data-actions>small {
    width: 100%;
    color: var(--muted);
    font-size: 9px;
}

.file-button {
    cursor: pointer;
}

.file-button input {
    display: none;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-options button {
    width: 31px;
    height: 31px;
    position: relative;
    border: 3px solid transparent;
    border-radius: 50%;
    background: var(--swatch);
}

.color-options button.active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid var(--swatch);
    border-radius: 50%;
}

.switch-row {
    margin: 6px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.switch-row span {
    flex: 1;
}

.switch-row strong,
.switch-row small {
    display: block;
}

.switch-row strong {
    font-size: 10.5px;
}

.switch-row small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8.5px;
}

.switch-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-row i {
    position: relative;
    width: 42px;
    height: 23px;
    flex: 0 0 42px;
    border-radius: 999px;
    background: var(--surface-3);
    transition: background .2s ease;
}

.switch-row i::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: transform .2s ease;
}

.switch-row input:checked+i {
    background: var(--accent);
}

.switch-row input:checked+i::after {
    transform: translateX(19px);
}

.users-list {
    padding: 0 20px 20px;
}

.user-list-item {
    min-height: 58px;
    padding: 11px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.user-list-item:first-child {
    border-top: 0;
}

.user-list-avatar {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 10px;
    font-weight: 700;
}

.user-list-info {
    min-width: 0;
    flex: 1;
}

.user-list-info strong,
.user-list-info span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-list-info strong {
    font-size: 10.5px;
}

.user-list-info span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8.5px;
}

.user-role {
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.user-current {
    color: var(--green);
    background: var(--green-soft);
}
.chart-insight { min-height: 35px; margin: 0 20px; padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--border); border-radius: 7px; color: var(--muted); background: var(--surface-2); font-size: 8.5px; }
.chart-insight strong { color: var(--text); font-size: 9px; }
.chart-insight span { text-align: right; }
