﻿.global-member-actions {
  position: fixed;
  z-index: 950;
  top: 20px;
  right: 112px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.global-login-button,
.global-member-button,
.global-logout-button {
  display: inline-flex;
  min-height: 36px;
  border: 1px solid
    rgba(116, 77, 48, 0.15);
  border-radius: 999px;
  background:
    rgba(255, 252, 247, 0.94);
  padding: 7px 13px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #684a2e;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    0 7px 18px
    rgba(86, 60, 39, 0.08);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.global-member-button {
  color: #74538c;
}

.global-member-button span {
  color: #a776c4;
}

.global-logout-button {
  border-color:
    rgba(130, 97, 146, 0.12);
  background:
    rgba(248, 242, 251, 0.94);
  color: #866d91;
  font-size: 0.7rem;
}

@media (max-width: 700px) {
  .global-member-actions {
    top: 17px;
    right: 70px;
  }

  .global-login-button,
  .global-member-button {
    min-height: 33px;
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .global-logout-button {
    display: none;
  }
}