/* pnw-cruising-accounts-booklist.css
 *
 * Print-friendly layout for US Letter (8.5" x 11")
 * with 1 inch margins and clean black-on-white styling.
 */

/* Page setup for printing */
@page {
  size: letter;
  margin: 1in;
}

/* Basic document styling */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 11pt;
  line-height: 1.4;
  background-color: #ffffff;
  color: #000000;
}

/* Layout container */
main {
  max-width: 6.5in; /* Fits comfortably within 1" margins on letter paper */
  margin: 0 auto 0.5in auto;
  padding: 0;
}

/* Header styles */
header {
  max-width: 6.5in;
  margin: 0.5in auto 0.3in auto;
  text-align: center;
}

h1 {
  font-size: 18pt;
  margin: 0 0 0.2in 0;
}

.scope {
  font-size: 11pt;
  margin: 0;
}

/* Book list styles */
.book-list {
  list-style-type: decimal;
  padding-left: 0.25in;
  margin: 0;
}

.book-item {
  margin-bottom: 0.3in;
}

.citation {
  font-size: 11pt;
  margin: 0 0 0.05in 0;
}

.description {
  margin: 0 0 0.05in 0;
}

.publisher-link {
  margin: 0;
}

/* Make links readable on screen and print */
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}

/* Show URLs after links when printing */
@media print {
  a::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }
}
