.container-map {
    position: relative;
    width: 100%; /* Volle Breite */
    height: 900px;
  }

#map {
    width: 100%;
    height: 100%;
    min-height: 800px;
  }


#marker-list-panel {
    position: absolute;
    top: 90px;
    left: 30px;
    z-index: 1001;
    background: rgba(255,255,255,0.97);
    border: 1px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 16px 20px;
    min-width: 220px;
    max-width: 350px;
    max-height: 700px;
    overflow-y: auto;
}
#marker-list-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#marker-list-panel li {
    margin-bottom: 8px;
    cursor: pointer;
    color: #0066bb;
}
#marker-list-panel li:hover {
    text-decoration: underline;
    background: #f0f8ff;
}

.interaction {
    flex: 1; /* 1 Anteil */
    background-color: rgb(209, 209, 209);
    display: flex;
    justify-content: left;
    align-items: left;
    padding: 10px;
  }


body {
/*     display: flex; 
    flex-direction: column; */
    align-items: center;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;

}
.content {
    display: flex;
    width: 100%;
    border: 1px solid #000;
}
.column {
    padding: 10px;
    box-sizing: border-box;
}
.row {
    flex-direction: row;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.row, .column {
    position: relative;
    z-index: 1;
}

.row-200 {
    height: 200px;
}

table.ao {
    /* width: auto; Allow the table to expand based on content */
    min-width: 100%; /* Ensure it takes at least the container's width */
    border-collapse: collapse;
    margin: 20px 0;
}
th.ao, td.ao {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th.ao {
    background-color: #f2f2f2;
}
#artTable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}


.bild {
    max-width: 100%;
    height: 400px;
}
.navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.navigation a {
    text-decoration: none;
    font-size: 24px;
    margin: 0 20px;
}
.result {
    padding: 8px;
}

.table-container {
    overflow-x: auto;
    /*width: 100%;  Ensure the container spans the full width */
}

.center-content {
  display: flex;
  align-items: center; /* vertikale Zentrierung */
  gap: 10px; /* optional: Abstand zwischen Bild und Text */
  padding: 10px;
  font-weight: bold;
  font-size: large;

}
