#overlay-root-account {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.hidden {
  display: none !important;
}

.account-panel {
  position: relative;
  background-color: #eeeeee;
  padding: 32px;
  border-radius: 5px;
  width: 420px;
  color: #888;
  font-family: sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-panel .account-title {
  margin: 0;
  font-size: 22px;
  color: #888;
  text-align: center;
}

.account-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-label {
  font-size: 13px;
  font-weight: normal;
  color: #888;
  letter-spacing: 0.2px;
}

.account-email {
  font-size: 14px;
  color: #555;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 10px;
  word-break: break-all;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

#account-logout {
  width: 100%;
  padding: 10px 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #ddd;
  color: #b44;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

#account-logout:hover {
  background-color: #fff;
}

.account-close {
  position: absolute;
  top: 10px;
  right: 12px;

  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
}

.account-close:hover {
  color: #000;
}
