.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  z-index: 1000;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.profile-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.profile-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.profile-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-divider {
  height: 1px;
  margin: 0.3rem 0;
  background-color: #e0e0e0;
  border: none;
}

#_backButton {
  transition: opacity 0.3s ease;
}

#_backButton.d-none {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

._regionTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  letter-spacing: 1px;
  margin-left: 6px
}

@media (max-width: 576px) {
  .main-header .badge span {
    display: none;
  }

  .profile-container .dropdown-menu {
    min-width: 160px;
  }
}
