h1{
    color: #333;
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

a {
    text-decoration: none;
    color: inherit; /* optionally, to inherit the color from the parent element */
}

button
{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    margin-right: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}


.calendar {
    display: flex;
    flex-wrap: wrap;
}
.week {
    width: 100px;
    height: 100px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.week:hover {
    background-color: #f0f0f0;
}
.photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
#yearContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
#yearContainer span {
    font-weight: bold;
    margin-right: 10px;
}

.circle {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #e73e3e;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color: white;
}

/* CSS styles for the photo popup */
#photoPopup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
background-color: rgba(0, 0, 0, 0.8);
padding: 20px;
border-radius: 10px;
}

#photoPopup img {
width: 80vw; /* Set the width of the image to 80% of the viewport width */
max-height: 80vh; /* Set the maximum height of the image to 80% of the viewport height */
display: block;
margin: 0 auto; /* Center the image horizontally */
}
.overlay {

display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 9998;
}
