/* Navbar and Dropdown Styles */

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: -50%;
  background: linear-gradient(to bottom, #ffffff 0%, #ebf0ff 100%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  min-width: 420px;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: transparent;
}

.dropdown-container:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dropdown-item:hover {
  background-color: #f8f7ff;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item-icon {
  font-size: 0.84375rem;
  font-weight: 700;
  color: #d1d5db;
  flex-shrink: 0;
  margin-top: 0;
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-title {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.dropdown-item-description {
  color: #718096;
  font-size: 0.75rem;
  line-height: 1.4;
}

.nav-chevron {
  font-size: 1.4rem;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  margin-top: 0.3em;
}
