/* Grundlegende Stile */
body {
    padding-top: 56px; /* Platz für die fixierte Navbar */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Organigramm-Container */
.organigram {
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: auto;
}

/* Box-Styling */
.box {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 15px 20px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
}

/* Verbindungslinien */
.connector {
    height: 25px;
    width: 2px;
    background-color: #333;
    margin: 5px auto;
}

/* Levels */
.level {
    margin: 10px 0;
}

.level.members .box {
    background-color: #0fa832;
}

.level.board .box {
    background-color: #FFC107;
}

.level.sub-levels .box:nth-child(1) {
    background-color: #17A2B8;
}

.level.sub-levels .box:nth-child(2) {
    background-color: #DC3545;
}

.level.sub-levels .box:nth-child(3) {
    background-color: #6F42C1;
}

.level.sub-levels .box:nth-child(4) {
    background-color: #07203b;
}

.level.sub-levels .box:nth-child(5) {
    background-color: #20C997;
}

.level.projects .box {
    background-color: #6610F2;
}

/* Hintergrund für Vorstand und Unterbereiche */
.level.board{
    background-color: #f0f0f0; /* Hellgrauer Hintergrund */
    padding: 20px;            /* Abstand innerhalb des Bereichs */
    border-radius: 8px;       /* Abgerundete Ecken */
    margin: 5px 0;           /* Abstand zwischen Elementen */
}