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

/* HEADER */
.team-header {
  text-align: center;
  background-color: #006d77;
  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;
}

/* CONTENT SECTION */
.content-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 17px;
  line-height: 1.75;
  color: #333;
}

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

/* PARAGRAPH & LISTS */
.content-section p,
.content-section ul {
  margin-bottom: 20px;
}

/* CODE BLOCKS */
.content-section code {
  display: block;
  background-color: #e0f4f3; /* Teal background */
  color: #004c4c; /* White text */
  padding: 14px 16px;
  margin: 14px 0;
  border-left: 4px solid #bbcf32;
  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;
}



/* TABLES */
.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.content-section th,
.content-section td {
  padding: 12px 14px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.content-section th {
  background-color: #e8f5f3;
  font-weight: 600;
  color: #006d77;
}

/* LINKS */
a {
  color: #006d77;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  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: #004f57;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

/* RESPONSIVE TABLES */
@media (max-width: 768px) {
  .content-section table,
  .content-section thead,
  .content-section tbody,
  .content-section th,
  .content-section td,
  .content-section tr {
    display: block;
    width: 100%;
  }

  .content-section tr {
    margin-bottom: 20px;
  }

  .content-section td {
    padding-left: 50%;
    position: relative;
  }

  .content-section td::before {
    position: absolute;
    top: 12px;
    left: 16px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 600;
    color: #555;
  }

  .content-section td:nth-of-type(1)::before { content: "R Version"; }
  .content-section td:nth-of-type(2)::before { content: "INLA Version"; }
  .content-section td:nth-of-type(3)::before { content: "Command"; }
}

.code-wrapper {
  position: relative;
  margin: 16px 0;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #006d77;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.copy-btn:hover {
  background-color: #004f57;
}

