img{
    /* max-width: 100%; Ensures the image doesn't exceed its container's width */
    height: 75vh;
    width: cover;
    margin-inline: 0 auto;
    margin: auto;
}
.topnav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    justify-content: center;
}
.topnav img {
    height: 75px;
    width: auto;
}
.left-section img {
    height: 50px;
    width: auto;
}
/* .photo-container {
    text-align: center;
    margin-top: 20px;
    width: 300px;
    height: 100%;
    overflow: hidden;
}
.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
/* No-op to ensure file exists before adding nav styles */

/* Simple top navigation */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #111;
    color: #fff;
}

.site-nav .brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
}
.topnav i {
    font-size: 35px;
}
.nav-links a:hover {
    background: rgba(255,255,255,0.06);
}
    .toolbar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 10px;
        border-bottom: 2px solid #000;
        font-family: sans-serif;
    }
    .left-section {
        justify-self: start;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .center-section {
        justify-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .right-section {
        justify-self: end;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    /* Styling for looks (same as before) */
    .search-bar { border: 2px solid #000; padding: 5px; width: 300px; }
    button { background: none; border: none; font-size: 20px; cursor: pointer; }
    .timer-box { border: 1px solid #ccc; padding: 5px 10px; }

@media (max-width: 640px) {
    .nav-links { display: none; }
}