.dashboard-header {
  background: #ffffff;
  padding: 0.01rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.header-title .logo {
  height: 40px;
  width: auto;
}

.user-info {
  font-size: 0.875rem;
  color: #6b7280;
}

.user-info strong {
  color: #1f2937;
  font-weight: 500;
}

.logout-button {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .dashboard-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .header-title {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .header-title .logo {
    height: 32px;
    width: auto;
  }

  .dashboard-header > div {
    width: 100%;
    justify-content: center;
  }

  .user-info {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .logout-button {
    width: 100%;
    justify-content: center;
  }
}
