/* Print-friendly stylesheet */

body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12pt;
    line-height: 1.5;
    background: #ffffff;
    color: #000000;
}

/* Remove unnecessary elements if needed */
nav, footer, aside {
    display: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    page-break-after: avoid;
}

/* Links: show URLs */
a {
    color: #000000;
    text-decoration: underline;
}

a::after {
    content: " (" attr(href) ")";
    font-size: 90%;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #000000;
    padding: 6px;
}

th {
    font-weight: bold;
}

/* Avoid awkward page breaks */
p, table {
    page-break-inside: avoid;
}












/* Images */
img {
    width: 600px;
    max-width: 100%;          /* prevents overflow on smaller containers */
    height: auto;
    border: 2px solid #7aa6c2; /* softened blue to match palette */
    border-radius: 10px;
    display: block;           /* avoids inline spacing quirks */
    margin: 1em 0;            /* adds breathing space */
}

/* Media query for small screens */
@media (max-width: 600px) {
    img {
        width: 100%;
    }
}