/* Dashboard Header */
.gpt-dashboard-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
  gap: 24px;
}

.gpt-header-logo-section {
  width: 100%;
  text-align: center;
}

.gpt-dashboard-logo {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}

.gpt-header-welcome-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gpt-profile-picture {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gpt-profile-picture-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e5e7eb;
  color: #9ca3af;
}

.gpt-header-welcome-section > div {
  display: flex;
  flex-direction: column;
}

.gpt-dashboard-header h1 {
  margin: 0 0 4px 0;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.gpt-dashboard-subtitle {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  font-weight: 400;
}

.gpt-logout-btn {
  padding: 10px 20px;
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  align-self: center;
}

.gpt-logout-btn:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}
