body {
  font-family: 'Courier New', Courier, monospace;
  background: white;
  color: black;
  padding: 1rem 2rem 2rem 2rem; /* Top padding reduced from 2rem to 1rem */
  max-width: 800px;
  margin: auto;
  position: relative;
}

.print-wrapper {
  position: relative;
  z-index: 1;
  background: white;
}

.print-button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

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

.copse-icon {
  max-height: 80px;
  width: auto;
}

h1 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.05rem;
}

.instructions {
  font-size: 1rem;
  margin-bottom: 2rem;
}

ol {
  padding-left: 1.5rem;
}

.writing-space .line-block {
  position: relative;
}

hr {
  border: none;
  border-top: 1px dashed #333;
  margin: 0.5rem 0;
}

.fold-line {
  font-size: 0.8rem;
  position: absolute;
  bottom: -1rem;
  left: 0;
  color: #555;
  font-style: italic;
}

/* Fold spacing */
.fold-1  { margin-bottom: 2rem; }
.fold-2  { margin-bottom: 2.5rem; }
.fold-3  { margin-bottom: 3rem; }
.fold-4  { margin-bottom: 3.5rem; }
.fold-5  { margin-bottom: 4.25rem; }
.fold-6  { margin-bottom: 5rem; }
.fold-7  { margin-bottom: 6rem; }
.fold-8  { margin-bottom: 7.5rem; }
.fold-9  { margin-bottom: 9rem; }
.fold-10 { margin-bottom: 11rem; }

@media print {
  .print-button {
    display: none;
  }

  body::before {
    content: "";
    background: url('../copse_silhouette.png') no-repeat center center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .copse-icon {
    max-height: 60px;
  }

  body {
    padding: 0.5in;
  }

  .fold-line {
    color: #999;
  }
}

