
/* Dashboard Navigation CSS */
.dashboard-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.dashboard-nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a6cf7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-nav-links {
  display: flex;
  gap: 20px;
}

.dashboard-nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dashboard-nav-link:hover {
  background-color: rgba(74, 108, 247, 0.1);
  color: #4a6cf7;
}

.dashboard-nav-link.active {
  background-color: #4a6cf7;
  color: white;
}

.dashboard-nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #4a6cf7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .dashboard-nav-links {
    display: none;
  }
  
  .dashboard-nav-menu-btn {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
