/* Account Dropdown Styles */

.account-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 8px;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 4px 8px;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: #8b7cf6;
}

.dropdown-item.active {
    background: #f3f4f6;
    color: #8b7cf6;
    font-weight: 600;
}

.dropdown-item svg {
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* Account button styling */
.account-btn {
  background: linear-gradient(135deg,#8b5cf6,#7c3aed);
  color:#fff;
  border:0;
  border-radius:12px;
  padding:12px 24px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:all .25s ease;
  box-shadow:0 4px 12px rgba(139,92,246,.25);
}
.account-btn:hover {
  background: linear-gradient(135deg,#7c3aed,#6d28d9);
  transform: translateY(-1px) scale(1.02);
  box-shadow:0 6px 16px rgba(124,58,237,.30);
}