body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #8b4513; /* NPS Brown */
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 50px 250px 147px 100px 120px 120px 1fr 1fr;
    width: 100%;
    gap: 1px 0px;
    background-color: #8b4513; /* NPS Brown */
    color: #ffffff;
}

img.thumbstamp {
    position: relative;
    border: 0px;
    z-index: 1;
}

img.thumbjumping {
    position: relative;
    border: 0px;
    z-index: 1;
}

.header, .row {
    display: contents;
}

.header div {
    font-weight: bold;
    padding: 5px;
    background-color: #8b4513; /* NPS Brown */
    background-color: #003300;
    color: #ffffff;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Apply alternating row colors */
.row:nth-of-type(odd) .cell {
    background-color: #6d7f48; /* Light Green */
    color: #ffffff;
}

.row:nth-of-type(even) .cell {
    background-color: #deb887; /* NPS Light Brown */
    color: #000000;
}

.cell {
    padding: 5px;
    max-height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the image */
    position: relative; /* Allow absolute positioning within the cell */
}

.cell img {
    width: 100%; /* Make the image take up the full width */
    height: auto; /* Maintain aspect ratio */
    max-height: 100px; /* Ensure the image does not exceed the cell's height */
    object-fit: contain; /* Scale the image to fit within the cell without clipping */
}

.cell.scrollable {
    overflow-y: auto;
}

.cell.notes, .cell.desc {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
    min-width: 200px;
}

.cell.name, .cell.loc {
    text-align: left;
    justify-content: flex-start; /* Left-align content */
    text-decoration: none; /* No underline */
}

.row:hover .cell {
    background-color: #8b4513; /* NPS Brown */
    color: #cccccc;
}
.cell a {
    text-decoration: none; /* No underline */
    color: #ffffff; /* White text color */
    background-color: #003300; /* Green on hover */
}

.cell a:hover {
    text-decoration: none; /* No underline */
    color: #ffffff; /* White text color */
    background-color: #003300; /* Green on hover */
}

.hlogo {
}

.hname {
    text-align: left;
}

.hloc {
    text-align: left;
}

.hdate {
    text-align: left;
}

.hstamp {
    text-align: center;
}

.hjumping {
    text-align: center;
}

.hnotes {
    text-align: left;
}

.hdesc {
    text-align: left;
}

.hamburger {
    cursor: pointer;
    padding: 0px;
    font-size: 25px; /* Adjust size as needed */
    color: #ffffff; /* White color for the icon */
}

.menu {
    display: none; /* Hide menu by default */
    position: fixed; /* Fix the position */
    top: 50px; /* Adjust this as needed */
    left: 35px; /* Adjust this as needed */
    background-color: #8b4513; /* Match the header background */
    border: 1px solid #ffffff; /* Optional: border around the menu */
    z-index: 200; /* Ensure it appears above other content */
    width: 200px;
    font-size: 16px; /* Adjust size as needed */
}

.menu a {
    display: block;
    padding: 10px; /* Padding for menu items */
    color: #ffffff; /* White text color */
    text-decoration: none; /* No underline */
    background-color: #8b4513;
}

.menu a:hover {
    text-decoration: none; /* No underline */
    background-color: #003300; /* Green on hover */
    color: #ffffff;
}

.overlay {
    display: none; /* Hide overlay by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 150; /* Ensure it appears below the menu but above other content */
}
