/* Profile dropdown + profile page styles (matches existing theme in style.css) */

.profile-card {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
}

.btn-profile-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(178, 107, 8, 0.35);
  background-color: rgba(255, 255, 255, 0.65);
  color: #2c281b;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.btn-profile-dropdown:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #2c281b !important;
  transform: none !important;
  box-shadow: none !important;
}

.profile-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.profile-dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(178, 107, 8, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 0.5rem;
  min-width: 240px;
}

.profile-dropdown-header {
  padding: 0.5rem 0.75rem;
}

.profile-dropdown-hello {
  margin: 0;
  font-weight: 700;
  color: #2c281b;
  font-size: 0.95rem;
}

.profile-dropdown-sub {
  margin: 0.15rem 0 0;
  color: #6c757d;
  font-size: 0.85rem;
}

.profile-dropdown-hello:hover,
.profile-dropdown-sub:hover {
  transform: none !important;
  text-shadow: none !important;
}

.profile-dropdown-menu .dropdown-item {
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.profile-dropdown-menu .dropdown-item:hover {
  background-color: rgba(178, 107, 8, 0.05);
  transform: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.profile-dropdown-menu .dropdown-item:active {
  background-color: rgba(178, 107, 8, 0.15);
  color: #2c281b;
}

.profile-dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
}

.profile-dropdown-menu .dropdown-item.logout {
  color: #b42318;
}

.profile-status {
  min-height: 1.2rem;
  font-size: 0.95rem;
  color: #6c757d;
}

.profile-status.success {
  color: #1f7a3f;
}

.profile-status.danger {
  color: #b42318;
}

