/* Synny account status v2
   A small verified marker replaces the redundant role badge without covering Synny. */

.synny-account-status {
  position: absolute;
  right: -6px;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--panel, #fff);
  border-radius: 50%;
  background: #dff8f1;
  color: #087f69;
  box-shadow: 0 3px 8px rgba(8, 127, 105, .16);
  pointer-events: none;
}

.synny-account-status-icon {
  width: 14px;
  height: 14px;
  color: #087f69;
  stroke: currentColor;
  stroke-width: 2.35;
}

.account-button .synny-account-status {
  right: -5px;
  bottom: 3px;
  width: 20px;
  height: 20px;
}

.account-button .synny-account-status-icon {
  width: 12px;
  height: 12px;
}

.account-menu-head .synny-account-status {
  right: -7px;
  bottom: 2px;
  width: 24px;
  height: 24px;
  border-width: 3px;
}

.account-menu-head .synny-account-status-icon {
  width: 15px;
  height: 15px;
}

html[data-theme="night"] .synny-account-status {
  border-color: #172033;
  background: #bff2e6;
  color: #075f52;
}

html[data-theme="night"] .synny-account-status-icon {
  color: #075f52;
}

@media (max-width: 640px) {
  .account-button .synny-account-status {
    right: -4px;
    bottom: 2px;
    width: 18px;
    height: 18px;
  }

  .account-menu-head .synny-account-status {
    right: -5px;
    bottom: 2px;
    width: 22px;
    height: 22px;
    border-width: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .synny-account-status {
    transition: none;
  }
}
