/* Main Header Styles */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 237, 234, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo-section:hover {
  opacity: 0.9;
  text-decoration: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.logo-section .brand-name {
  color: #2d3748;
}

.logo-section:hover .brand-name {
  color: #2d3748;
}

.user-menu {
  position: relative;
  flex: 0 0 auto;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #a8edea;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-avatar:hover {
  border-color: #79c2d0;
  transform: scale(1.05);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 200px;
  z-index: 1000;
  display: none;
  margin-top: 0.5rem;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(168, 237, 234, 0.1);
  color: #2d3748;
  text-decoration: none;
}

.dropdown-item i {
  margin-right: 0.5rem;
  width: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 576px) {
  .main-header {
    padding: 0.75rem 0;
  }
  
  .main-header .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .brand-name {
    font-size: 1.6rem;
  }
  
  .user-avatar {
    width: 32px;
    height: 32px;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
  }
}