/* TaxTami account chip — sits in the top utility strip on the LEFT,
   alongside the email and phone (in .top-left .info-list) */

.top-left .info-list > li.tt-account-chip-li {
  list-style: none;
  display: inline-block;
  margin: 0 14px 0 0;
  padding: 0;
}
.top-left .info-list > li.tt-account-chip-li > a.tt-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #ffffff;
  color: #1a5038 !important;
  border-radius: 18px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s, color .15s, transform .15s;
  letter-spacing: 0.2px;
}
.top-left .info-list > li.tt-account-chip-li > a.tt-account-chip:hover {
  background: #c97a37;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}
.top-left .info-list > li.tt-account-chip-li .tt-acc-icon {
  width: 12px; height: 12px; flex-shrink: 0; display: inline-block;
}
.top-left .info-list > li.tt-account-chip-li .tt-acc-icon svg {
  width: 12px; height: 12px; fill: currentColor;
}

/* On mobile, make sure it stays visible even when the rest of the info list collapses */
@media (max-width: 767px) {
  .top-left .info-list > li.tt-account-chip-li > a.tt-account-chip {
    padding: 4px 11px;
    font-size: 11px;
  }
}

/* HIDE legacy chip locations (outer-box and old in-nav variants) so we don't double-show */
.outer-box .tt-account-chip { display: none !important; }
ul.navigation > li.tt-account-chip-li { display: none !important; }
li.tt-account-nav { display: none !important; }
