/* Logout Button */
.logout-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 10%);
  color: var(--text-secondary);
  transition: all 0.2s ease;
  margin-left: 0;
  border: 1px solid rgb(255 255 255 / 10%);
}

.logout-btn:hover {
  background-color: rgb(255 59 48 / 10%);
  color: #ff3b30;
  border-color: rgb(255 59 48 / 30%);
  transform: translateY(-1px);
}

.logout-btn svg {
  width: 18px;
  height: 18px;
}

/* Header Right Alignment */
.header-right {
  display: flex;
  align-items: center;
}

/* floating-login-buttons 내부의 logout-btn은 position을 relative로 오버라이드 */
.floating-login-buttons .logout-btn {
  position: relative !important;
  inset: auto !important;
  margin: 0 !important;
  display: flex !important; /* 명시적으로 표시 */
  visibility: visible !important; /* 명시적으로 보이도록 */
  opacity: 100% !important; /* 명시적으로 불투명 */
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0;
}

/* admin-logout-buttons 컨테이너 스타일 강화 */
#admin-logout-buttons {
  display: flex !important;
  visibility: visible !important;
  opacity: 100% !important;
  gap: 10px !important;
  align-items: center !important;
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 1000 !important;
}
