html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/* ---- TrackMyWallet brand theme: warm off-white + Bitcoin orange ---- */
:root {
  --tmw-orange: #f7931a;
  --tmw-orange-hover: #e07d0a;
  --tmw-orange-active: #c96c00;
  --tmw-bg: #f8f6f3;
  --tmw-surface: #ffffff;
  --tmw-surface-alt: #faf7f2;
  --tmw-border: #e7e1d8;
  --tmw-text: #201a14;
  --tmw-text-muted: #6b6459;

  --bs-body-bg: var(--tmw-bg);
  --bs-body-color: var(--tmw-text);
  --bs-secondary-color: var(--tmw-text-muted);
  --bs-border-color: var(--tmw-border);
  --bs-border-color-translucent: var(--tmw-border);

  --bs-primary: var(--tmw-orange);
  --bs-primary-rgb: 247, 147, 26;
  --bs-link-color: var(--tmw-orange);
  --bs-link-color-rgb: 247, 147, 26;
  --bs-link-hover-color: var(--tmw-orange-hover);
  --bs-link-hover-color-rgb: 224, 125, 10;

  --bs-tertiary-bg: var(--tmw-surface-alt);
  --bs-secondary-bg: var(--tmw-surface-alt);
  --bs-card-bg: var(--tmw-surface);
  --bs-card-border-color: var(--tmw-border);
}

/* Dark theme: redefine the brand tokens; every rule below already reads them
   (and the --bs-* mappings above re-resolve through them), so nothing else needs
   a dark-specific rule. data-bs-theme also flips Bootstrap's own components. */
:root[data-bs-theme="dark"] {
  color-scheme: dark;

  --tmw-orange: #f7931a;
  --tmw-orange-hover: #ffa838;
  --tmw-orange-active: #ffb85c;
  --tmw-bg: #17130f;
  --tmw-surface: #211b15;
  --tmw-surface-alt: #2a2219;
  --tmw-border: #3a3128;
  --tmw-text: #f0e9e0;
  --tmw-text-muted: #a89e90;
}

body {
  background-color: var(--tmw-bg);
}

/* Theme toggle: show the icon for the theme you'd switch TO. */
.theme-toggle .theme-toggle-moon { display: none; }
.theme-toggle .theme-toggle-sun { display: inline-block; }
:root[data-bs-theme="dark"] .theme-toggle .theme-toggle-sun { display: none; }
:root[data-bs-theme="dark"] .theme-toggle .theme-toggle-moon { display: inline-block; }
.theme-toggle { color: var(--tmw-text); border: none; background: transparent; }
.theme-toggle:hover, .theme-toggle:focus { color: var(--tmw-orange); }

.navbar {
  background-color: var(--tmw-surface) !important;
  border-bottom: 1px solid var(--tmw-border);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar-brand-track {
  color: var(--tmw-orange);
}

.navbar-brand-wallet {
  color: var(--tmw-text);
}

.navbar .nav-link {
  color: var(--tmw-text);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--tmw-orange);
}

:root {
  --tmw-header-h: 60px;
  --tmw-rail-w: 56px;
  --tmw-rail-w-expanded: 220px;
}

header.sticky-top {
  z-index: 1030;
}

.side-rail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0.5rem 0 0 auto;
  margin-right: calc((var(--tmw-rail-w) - 28px) / 2);
  border: none;
  background: transparent;
  color: var(--tmw-text-muted);
  border-radius: 0.3rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, margin-right 0.2s ease, color 0.15s ease;
}

.side-rail-toggle:hover,
.side-rail-toggle:focus {
  background-color: var(--tmw-surface-alt);
  color: var(--tmw-orange);
}

.side-rail {
  position: fixed;
  top: var(--tmw-header-h);
  left: 0;
  bottom: 0;
  width: var(--tmw-rail-w);
  background-color: var(--tmw-surface);
  border-right: 1px solid var(--tmw-border);
  overflow: hidden;
  transition: width 0.2s ease;
  z-index: 1010;
  display: flex;
  flex-direction: column;
}

.side-rail-nav {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
}

.side-rail-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  color: var(--tmw-text);
  text-decoration: none;
  white-space: nowrap;
  border-left: 3px solid transparent;
}

.side-rail-link:hover,
.side-rail-link:focus {
  background-color: var(--tmw-surface-alt);
  color: var(--tmw-orange);
}

.side-rail-link.active {
  background-color: rgba(247, 147, 26, 0.15);
  color: var(--tmw-orange-active);
  border-left-color: var(--tmw-orange);
  font-weight: 600;
}

.side-rail-icon {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-rail-label {
  opacity: 0;
  transition: opacity 0.12s ease;
}

.side-rail-divider {
  height: 1px;
  margin: 0.5rem 1rem;
  background-color: var(--tmw-border);
}

.side-rail-section-label {
  padding: 0.25rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tmw-text-muted, #6c757d);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.page-shell {
  padding-left: var(--tmw-rail-w);
  transition: padding-left 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--tmw-shell-top, var(--tmw-header-h)));
}

.bare-shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--tmw-shell-top, var(--tmw-header-h)));
}

/* Desktop: the rail is expanded by default (rendered from CSS, so no post-paint jump).
   Mobile keeps it collapsed. An explicit toggle choice (:root[data-rail=...], set before
   paint by the head script) overrides the width at any viewport. */
@media (min-width: 992px) {
  .side-rail { width: var(--tmw-rail-w-expanded); }
  .page-shell { padding-left: var(--tmw-rail-w-expanded); }
  .side-rail-label,
  .side-rail-section-label { opacity: 1; }
  .side-rail-toggle { transform: rotate(180deg); margin-right: 0.75rem; }
}

:root[data-rail="collapsed"] .side-rail { width: var(--tmw-rail-w); }
:root[data-rail="collapsed"] .page-shell { padding-left: var(--tmw-rail-w); }
:root[data-rail="collapsed"] .side-rail-label,
:root[data-rail="collapsed"] .side-rail-section-label { opacity: 0; }
:root[data-rail="collapsed"] .side-rail-toggle {
  transform: none;
  margin-right: calc((var(--tmw-rail-w) - 28px) / 2);
}

:root[data-rail="expanded"] .side-rail { width: var(--tmw-rail-w-expanded); }
:root[data-rail="expanded"] .page-shell { padding-left: var(--tmw-rail-w-expanded); }
:root[data-rail="expanded"] .side-rail-label,
:root[data-rail="expanded"] .side-rail-section-label { opacity: 1; }
:root[data-rail="expanded"] .side-rail-toggle {
  transform: rotate(180deg);
  margin-right: 0.75rem;
}

.card {
  background-color: var(--tmw-surface);
  border-color: var(--tmw-border);
  box-shadow: 0 1px 3px rgba(32, 26, 20, 0.04);
}

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: var(--tmw-surface-alt);
  --bs-table-border-color: var(--tmw-border);
  --bs-table-color: var(--bs-body-color);
}

.btn-primary {
  --bs-btn-bg: var(--tmw-orange);
  --bs-btn-border-color: var(--tmw-orange);
  --bs-btn-hover-bg: var(--tmw-orange-hover);
  --bs-btn-hover-border-color: var(--tmw-orange-hover);
  --bs-btn-active-bg: var(--tmw-orange-active);
  --bs-btn-active-border-color: var(--tmw-orange-active);
  --bs-btn-color: #201a14;
  --bs-btn-hover-color: #201a14;
  --bs-btn-active-color: #201a14;
}

.btn-outline-primary {
  --bs-btn-color: var(--tmw-orange-active);
  --bs-btn-border-color: var(--tmw-orange);
  --bs-btn-hover-bg: var(--tmw-orange);
  --bs-btn-hover-border-color: var(--tmw-orange);
  --bs-btn-hover-color: #201a14;
  --bs-btn-active-bg: var(--tmw-orange-active);
  --bs-btn-active-border-color: var(--tmw-orange-active);
}

.footer {
  background-color: var(--tmw-surface);
  border-color: var(--tmw-border) !important;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-legal {
  text-align: center;
}

.footer-lang {
  text-align: right;
}

.footer-lang a {
  white-space: nowrap;
}

.footer-lang a.active {
  color: var(--tmw-text);
  font-weight: 600;
}

/* The language switch is a POST form (CSRF); style its button as a plain footer link. */
.footer-lang-btn {
  padding: 0;
  border: 0;
  background: none;
  white-space: nowrap;
  color: var(--bs-link-color);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.footer-lang-btn:hover {
  color: var(--bs-link-hover-color);
}

.footer-lang-btn.active {
  color: var(--tmw-text);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-legal,
  .footer-lang {
    text-align: center;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--tmw-bg), 0 0 0 0.25rem var(--tmw-orange);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.cursor-pointer {
  cursor: pointer;
}

.expand-chevron {
  display: inline-block;
  transition: transform 0.15s ease;
  color: var(--tmw-text-muted);
}

tr:not(.collapsed) .expand-chevron {
  transform: rotate(90deg);
}

.wallet-breakdown {
  background-color: var(--tmw-surface-alt);
}

.wallet-breakdown td {
  border-top: none;
  padding-left: 2.25rem;
}

.avatar-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--tmw-orange);
  color: #201a14;
  font-size: 0.8rem;
  font-weight: 700;
}

.notification-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.6rem;
  padding: 0.25em 0.4em;
}

/* This navbar has no navbar-expand-* wrapper, so Bootstrap's mobile-first
   ".navbar-nav .dropdown-menu{position:static}" rule applies at every width
   and the menu would otherwise push open in-flow, stretching the header. */
.navbar .dropdown-menu {
  position: absolute;
}

.notification-dropdown {
  width: 340px;
  max-height: 420px;
  overflow-y: auto;
}

.notification-unread {
  background-color: var(--tmw-surface-alt);
}

/* ---- Auth pages (Login/Register) ---- */
.auth-page {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--tmw-surface);
  border: 1px solid var(--tmw-border);
  border-radius: 0.9rem;
  box-shadow: 0 24px 60px -30px rgba(32, 26, 20, 0.25);
  padding: 2.25rem;
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.auth-card .auth-subtitle {
  color: var(--tmw-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.auth-card .form-label {
  font-weight: 600;
  font-size: 0.88rem;
}

.auth-card .form-control {
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
}

.auth-card .btn-primary {
  width: 100%;
  padding: 0.65rem;
  font-weight: 600;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--tmw-text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--tmw-border);
}

.web3-login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.web3-wallet-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.web3-wallet-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-start;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.web3-wallet-item img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* Compact "Connect wallet" in the landing nav */
.web3-nav {
  position: relative;
}

.web3-nav-btn {
  display: inline-flex;
  align-items: center;
}

.web3-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 1040;
  width: 240px;
  padding: 0.6rem;
  background: var(--tmw-surface);
  border: 1px solid var(--tmw-border);
  border-radius: 0.6rem;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.web3-nav-wallets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.web3-nav-wallets:empty {
  display: none;
}

.web3-nav-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tmw-text-muted);
  padding: 0 0.15rem 0.15rem;
}

.web3-nav-status {
  font-size: 0.85rem;
  color: var(--tmw-text-muted);
  padding: 0.35rem 0.15rem;
}

.web3-nav-error {
  font-size: 0.82rem;
  color: var(--bs-danger, #c62828);
  padding: 0.35rem 0.15rem;
}

.web3-nav-panel .web3-wallet-item {
  font-size: 0.88rem;
  padding: 0.5rem 0.6rem;
}

.auth-card .auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--tmw-text-muted);
}

.auth-card .form-text a,
.auth-card .auth-footer a {
  font-weight: 600;
}

/* ---- Legal pages (Privacy/Terms/Imprint) ---- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-page .legal-updated {
  color: var(--tmw-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page .legal-note {
  background-color: var(--tmw-surface-alt);
  border: 1px solid var(--tmw-border);
  border-left: 3px solid var(--tmw-orange);
  border-radius: 0.4rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--tmw-text-muted);
  margin-bottom: 2rem;
}

.legal-page .placeholder {
  background-color: rgba(247, 147, 26, 0.15);
  padding: 0.05rem 0.3rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

/* ---- Onboarding / empty states ---- */
.empty-state {
  text-align: center;
  max-width: 460px;
  margin: 3rem auto;
  color: var(--tmw-text-muted);
}

.empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(247, 147, 26, 0.12);
  color: var(--tmw-orange);
  margin-bottom: 1rem;
}

.empty-state h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tmw-text);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.empty-state .btn {
  margin-top: 1rem;
}

.web3-network-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 260px;
  margin: 0 auto;
  text-align: left;
}

.web3-network-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--tmw-border);
  border-radius: 0.5rem;
  cursor: pointer;
  margin: 0;
}

.web3-network-option:has(input:checked) {
  border-color: rgba(247, 147, 26, 0.4);
  background: rgba(247, 147, 26, 0.06);
}

.web3-network-option .form-check-input {
  margin: 0;
  float: none;
}

.web3-network-option .form-check-label {
  color: var(--tmw-text);
}

/* ---- PWA install prompt (custom - browsers no longer show one) ---- */
.pwa-install {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1080;
  width: calc(100% - 2rem);
  max-width: 26rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: var(--tmw-surface);
  border: 1px solid var(--tmw-border);
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(32, 26, 20, 0.18);
}

.pwa-install[hidden] { display: none; }

.pwa-install-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
}

.pwa-install-text {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  line-height: 1.25;
}

.pwa-install-text strong { display: block; }
.pwa-install-text span { color: var(--tmw-text-muted); }

.pwa-install-close {
  background: none;
  border: 0;
  color: var(--tmw-text-muted);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- Dashboard: sortable table, collapsible Finances ---- */
.sortable-th {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.sortable-th::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  color: var(--tmw-text-muted);
}

.sortable-th[aria-sort="ascending"]::after { content: " \2191"; }
.sortable-th[aria-sort="descending"]::after { content: " \2193"; }

.finances-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.finances-toggle::after {
  content: "\25BE";
  color: var(--tmw-text-muted);
  transition: transform 0.15s ease;
}

.finances-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }

.finances-collapse-total { font-weight: 700; }

[data-finances-collapsible] .finances-collapse-body { display: none; }
[data-finances-collapsible].is-open .finances-collapse-body { display: block; margin-top: 0.5rem; }

/* From lg up the column has room for the full list - always show it and drop the
   disclosure affordance so it reads as a plain card like the others. */
@media (min-width: 992px) {
  .finances-toggle { pointer-events: none; }
  .finances-toggle::after,
  .finances-collapse-total { display: none; }
  [data-finances-collapsible] .finances-collapse-body { display: block !important; margin-top: 0.5rem; }
}

/* ---- Toasts ---- */
#tmwToastHost {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(90vw, 22rem);
}

.tmw-toast {
  background: var(--tmw-surface);
  color: var(--tmw-text);
  border: 1px solid var(--tmw-border);
  border-left: 3px solid var(--tmw-orange);
  border-radius: 0.375rem;
  padding: 0.6rem 0.85rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tmw-toast.show { opacity: 1; transform: translateY(0); }
.tmw-toast-success { border-left-color: #2e7d32; }
.tmw-toast-danger { border-left-color: #c62828; }

/* ---- Combobox: free-text picker with a filtered suggestion list (replaces <select>s) ---- */
.combobox {
  position: relative;
}

.combobox-results {
  position: absolute;
  z-index: 1056; /* above a Bootstrap modal (1055) so it isn't clipped when used in one */
  left: 0;
  right: 0;
  margin: 0.15rem 0 0;
  padding: 0.25rem 0;
  list-style: none;
  background: var(--tmw-surface);
  border: 1px solid var(--tmw-border);
  border-radius: 0.375rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  max-height: 20rem;
  overflow-y: auto;
}

.combobox-results[hidden] {
  display: none;
}

.combobox-results li {
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
}

.combobox-results .cb-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}

.combobox-results .cb-label {
  font-weight: 600;
  flex-shrink: 0;
}

.combobox-results .cb-sublabel {
  color: var(--tmw-text-muted);
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combobox-results li[aria-selected="true"],
.combobox-results li[role="option"]:hover {
  background: var(--tmw-surface-alt);
  color: var(--tmw-orange);
}

.combobox-results .cb-empty {
  padding: 0.4rem 0.75rem;
  color: var(--tmw-text-muted);
  cursor: default;
}

/* The "selected, not editable" state: an icon + label pill with a clear/change button.
   combobox.js shows this and hides the text input once a value is chosen. */
.combobox-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: calc(1.5em + 0.75rem + 2px); /* match .form-control height */
  padding: 0.375rem 0.5rem 0.375rem 0.75rem;
  background: var(--tmw-surface);
  border: 1px solid var(--tmw-border);
  border-radius: 0.375rem;
  cursor: pointer;
}

.combobox-chip:hover {
  border-color: var(--tmw-orange);
}

.combobox-chip[hidden] {
  display: none;
}

.combobox-chip .cb-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}

.combobox-chip .cb-icon[hidden] {
  display: none;
}

.combobox-chip-label {
  flex: 1 1 auto;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combobox-chip-clear {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--tmw-surface-alt);
  color: var(--tmw-text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.combobox-chip-clear:hover {
  background: var(--tmw-orange);
  color: #fff;
}
