body {
  background-image: url("../assets/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

header {
  color: white;
  padding: 50px;
  position: relative;
}

.header-inline h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.back-link {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  background-color: #ffffff;
  color: #003366;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
}

.back-link:hover {
  background-color: #cce0ff;
}

main {
  margin: 30px;
  padding: 30px;
  border-radius: 12px;
  background-color: #ffffff;
}

.gantt-title {
  font-size: 1.1em;
  color: #003366;
  cursor: pointer;
  margin-bottom: 8px;
}

.gantt-chart h4 {
  color: #003366;
}

.gantt-image {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.gantt-description {
  font-size: 0.95em;
  color: #555;
}

.contract-container {
  display: flex;
  gap: 32px;
}

.contract-documents {
  flex: 1;
  background: #f8faff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 18px;
  min-width: 220px;
}

.contract-documents h3 {
  color: #003366;
  margin-top: 0;
}

.contract-documents h4 {
  margin-bottom: 4px;
}

.contract-documents ul {
  list-style: none;
  padding: 0;
  font-size: 0.97em;
}

.contract-documents li {
  margin-top: 12px;
}

.contract-documents a {
  color: #0055aa;
  font-weight: bold;
}

.pdf-embed {
  border: 1px solid #ccc;
  margin-top: 4px;
}

button {
  margin-top: 6px;
  padding: 6px 14px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #004080;
}

.doc-scroll {
  max-height: 70vh;
  overflow-y: auto;
}

.disclaimer {
  font-size: 0.9em;
  color: #888;
  margin-top: 12px;
}
