/* UI79: one logout action across owner, vet, clinic and Super Admin panels. */
.panel-logout-action {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  color: var(--ink4);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease;
}

.panel-logout-action i {
  width: 16px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.panel-logout-action:hover,
.panel-logout-action:focus-visible {
  color: var(--red);
  background: rgba(239, 68, 68, .08);
  border-color: transparent;
  outline: none;
}

.panel-logout-action--profile {
  align-self: center;
  justify-self: center;
  margin: 14px auto 0;
}

#panel-ow-profile .ds-prof-hero > .panel-logout-action--profile,
#panel-cl-myprofile .ds-prof-hero > .panel-logout-action--profile {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .ds-top .panel-logout-action--top {
    width: 36px;
    height: 36px;
    min-height: 36px;
    flex: 0 0 36px;
    gap: 0;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .ds-top .panel-logout-action--top i {
    width: auto;
    font-size: 16px;
  }

  .panel-logout-action--profile {
    min-height: 36px;
    margin: 12px auto 0 !important;
    padding: 0 12px;
    font-size: 11px;
  }
}

[data-theme="dark"] .panel-logout-action:hover,
[data-theme="dark"] .panel-logout-action:focus-visible {
  background: rgba(248, 113, 113, .12);
}
