body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  color: #222;
}

/* Header */
.team-header {
  text-align: center;
  background: linear-gradient(135deg, #006d77 0%, #0b8793 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  border-bottom: 4px solid #bbcf32;
}

.team-header h1 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

.team-header p {
  font-size: 18px;
  color: #e0f7f5;
  margin-top: 0;
}

/* Optional hero image overlay */
.team-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(70%) blur(1px);
  pointer-events: none;
}

.team-header > * { position: relative; z-index: 1; }

/* Tutorial Section */
.tutorial-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.tutorial-section h2 {
  color: #006d77;
  font-size: 22px;
  margin-bottom: 16px;
  border-left: 5px solid #bbcf32;
  padding-left: 12px;
}

.tutorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tutorial-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.tutorial-list a {
  color: #006d77;
  text-decoration: none;
  font-weight: 500;
}

.tutorial-list a:hover {
  color: #dd8545;
  text-decoration: underline;
}

/* Back Button */
.back-button {
  padding: 12px 26px;
  background-color: #006d77;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.back-button:hover {
  background-color: #dd8545;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Footer */
.team-footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #f8f9fa;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #eee;
}

.labels-list {
  margin: 20px 0;
  font-size: 16px;
  line-height: 2;
  color: #2c3e50;
}

.labels-list .label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  margin: 4px 8px 4px 0;
  vertical-align: middle;
}

/* Label colors to match GitHub UI */
.label.bug {
  background-color: #d73a4a;
  color: #ffffff;
}

.label.install {
  background-color: #f9d423;
  color: #000000;
}

.label.enhancement {
  background-color: #a2eeef;
  color: #000000;
}

.label.docs {
  background-color: #0366d6;
  color: #ffffff;
}

.label.duplicate {
  background-color: #cfd3d7;
  color: #000000;
}

.label.wontfix {
  background-color: #ffffff;
  border: 1px solid #ccc;
  color: #000000;
}

.label.invalid {
  background-color: #e4e669;
  color: #000000;
}

.label.newuser {
  background-color: #b4befe;
  color: #000000;
}

.code-group {
  background-color: #e0f4f3;
  border-left: 4px solid #bbcf32;
  padding: 12px 16px;
  margin: 14px 0 24px 0;
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
}

.code-group code {
  display: block;
  background: none;
  border: none;
  margin: 6px 0;
  padding: 0;
  color: #004c4c;
  font-size: 15px;
  white-space: pre-wrap;
}


.content-section code {
  display: block;
  background-color: #e0f4f3;  /* ✅ Teal-ish light background */
  color: #004c4c;             /* ✅ Dark teal text color */
  padding: 14px 16px;
  margin: 14px 0;
  border-left: 4px solid #bbcf32; /* ✅ Lime green accent bar */
  font-family: 'Courier New', Courier, monospace;
  white-space: pre-wrap;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
}

.tutorial-section p {
  color: #006d77;
  font-size: 16px;
  line-height: 1.7;
}

.tutorial-section li {
  color: #006d77;
}

.labels-list {
  color: #006d77; /* match INLA theme */
}
