body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 33.33%; /* 1/3 des verfügbaren Platzes */
    background-color: #f4f4f4;
    overflow-y: auto;
    padding: 10px;
    align-items: center;
}

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hoehler-list {
    width: 100%;
    margin-bottom: 20px; /* Platz für den Button */
}

#image-recognition-button {
    background-color: #337ac6; /* Blau wie in iOS */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    margin-top: 10px; /* Abstand zur Liste */
}

#image-recognition-button i.camera-icon::before {
    content: "\f030"; /* FontAwesome Kamera-Symbol */
    font-family: FontAwesome;
}

#map {
    width: 66.67%; /* 2/3 des verfügbaren Platzes */
    height: 100vh;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

li:hover {
    background-color: #e1e1e1;
}

.thumbnail {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

.description {
    display: none;
    padding-top: 10px;
}

li.active .description {
    display: block;
}

#timeline {
    margin-bottom: 20px;
}

#year-slider {
    width: 100%;
}

#selected-year {
    text-align: center;
    font-size: 1.2em;
    margin-top: 10px;
}

#year-description {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.lightbox {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox.show {
    display: block;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
}

.lightbox img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}
