/* Public Header Styles */
.public-header {
  background: white;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  margin: 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo .logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header-logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4285f4;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.back-link:hover {
  background: #f8f9fa;
  color: #4285f4;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.page-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .header-logo {
    gap: 0.5rem;
  }

  .header-logo .logo-image {
    height: 32px;
  }

  .header-logo h1 {
    font-size: 1.25rem;
  }

  .back-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
  }

  .page-title {
    font-size: 1rem;
  }
}
