.spec-sheet {
    background-color: #f0f0f0;
    border: 2px solid #000;      /* Solid border for a 'printed' look */
    padding: 20px;
    margin-bottom: 30px;
    font-family: "Courier New", Courier, monospace; /* Typewriter font */
}

.spec-title {
    font-size: 14pt;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px dashed #000;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.photo-log-container {
    background-color: #ccc;      /* Darker background to make photos pop */
    border: 3px inset #fff;      /* Deep sunken well */
    padding: 20px;
    text-align: center;
}

.log-entry {
    margin-bottom: 40px;         /* Space between photos */
    background-color: #fff;      /* White 'photo paper' border */
    padding: 10px 10px 30px 10px;/* Extra bottom padding for Polaroid look */
    display: inline-block;       /* Keeps the white border tight to img */
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3); /* Slight drop shadow */
    max-width: 90%;              /* Responsive container */
}

.detail-img {
    width: 100%;                 /* Fill the white photo frame */
    max-width: 800px;            /* Allow massive size for details */
    height: auto;
    border: 1px solid #000;      /* Thin black edge on the photo itself */
    display: block;
}

.img-caption {
    font-family: Arial, sans-serif;
    font-size: 10pt;
    font-style: italic;
    color: #444;
    margin-top: 10px;
    text-align: center;
}

.back-link {
    font-size: 12pt;
    font-weight: bold;
    text-decoration: none;
    color: #000080;
}
.back-link:hover {
    text-decoration: underline;
    background-color: yellow;
}