/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    margin: 15px 0;
    font-size: 1em;
    color: #333;
    text-align: left; /* Links ausgerichtet */
    width: 90%;
}
.title2 {
    margin: 20px 0;
    font-size: 1em;
    color: #333;
    text-align: left; /* Links ausgerichtet */
    width: 90%;
}
.title2r {
    margin: 20px 0;
    font-size: 1em;
    color: #333;
    text-align: right; /* Links ausgerichtet */
    width: 90%;
}

/* Container für die Spalten */
.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    /*border: 1px solid #ddd; */
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Erste Spalte (Bilder) */
.images-column {
    width: 70%;
    padding: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten */
    gap: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
}

/* Zweite Spalte (Links) */
.links-column {
    width: 30%;
    padding: 20px;
    background-color: #D8DDF4 /*f9f9f9;*/
    box-sizing: border-box;
    overflow-y: auto;
}

.link-group {
    margin-bottom: 18px;
}

.group-title {
     margin: 0 0 10px 0;
    padding: 10px;
    font-size: 1.2em;
    text-align: left; /* Links ausgerichtet */
}

/* Spezifische Gruppen-Styles */
.group1-title {
    /*background-color: #333;*/
    color: #ccc;
}

.group2-title {
    background-color: #CFDDFD; /*A7A7A7; - GroupTitle */
    color: #333;
}

.link-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin: 5px 0;
}

.link-list a {
    text-decoration: none;
    color: #007bff;
}

.link-list a:hover {
    text-decoration: underline;
}

/* Allgemeiner Text */
.general-text {
    width: 90%;
    max-width: 1200px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.1em;
}

/* Tabelle */
.table-container {
    width: 90%;
    max-width: 1200px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: left;
}

tbody td {
    padding: 10px;
    border: none; /* Kein Rahmen */
    text-align: left;
}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}