.liken-account-menu {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.liken-account-menu > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 10px 5px 6px;
  border: 1px solid #5f98cf;
  border-radius: 999px;
  background: #f2f8ff;
  color: #0f4775;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.liken-account-menu > summary::-webkit-details-marker { display: none; }

.liken-account-avatar {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: #0f4775;
  font-size: .78rem;
  letter-spacing: .04em;
}

.liken-account-name {
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.liken-account-menu-panel {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid #a8c9eb;
  border-radius: 14px;
  background: #f2f8ff;
  box-shadow: 0 14px 34px rgba(13, 56, 96, .18);
}

.liken-account-menu-panel a,
.liken-account-menu-panel button {
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #0f4775;
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.liken-account-menu-panel a:hover,
.liken-account-menu-panel button:hover { background: #e3f1ff; }

.liken-account-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 14px;
}

.liken-account-navigation > a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #0f4775;
  font-weight: 700;
  text-decoration: none;
}

.liken-account-navigation > a:hover { background: #e3f1ff; }

@media (max-width: 760px) {
  .liken-account-name { max-width: 8.5rem; }
  .liken-account-menu-inline { width: 100%; }
  .liken-account-menu-inline > summary { justify-content: center; }
  .liken-account-menu-panel { right: 50%; transform: translateX(50%); }
}
