/* Shared header styles */
.shared-header {
  height: 64px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.header-nav a:hover {
  color: #666;
}

/* Centered logo header styles */
.centered-logo {
  justify-content: center !important;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.centered-logo-img {
  height: 48px;
  max-width: 220px;
  width: auto;
}

/* Shared footer styles */
.shared-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-section:not(:has(h3)) {
  padding-top: 40px; /* Compensate for missing header */
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.footer-section p {
  font-size: 13px;
  max-width: 440px;
}

/* Shared layout styles */
body {
  padding-top: 64px; /* Account for fixed header */
}

.simulator-container {
  position: relative;
  z-index: 1;
}
