#wrap {
    max-width: 1800px; /* Maximale Breite */
    width: 95%;        /* 95 % der Breite des Containers */
	margin: 0 auto;
}

/* custom.css */
dl.row-item {
    display: flex;
    align-items: left;
}

dl.row-item dt .list-inner {
    flex: 1 1 auto;
}

dl.row-item dd {
    flex: 0 1 auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

dl.row-item dd.topics {
    flex: 0 0 15%;
}

dl.row-item dd.posts {
    flex: 0 0 10%;
}

dl.row-item dd.lastpost {
    flex: 0 0 35%;

}

/* Portalmenüanpassung */

.dropdown-container {
    display: flex;
    justify-content: center;
}

details {
    font-size: 85%;
}

summary {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}

.separator {
    font-size: 85%; /* Schriftgröße festlegen */
    margin: 0 5px;
    font-weight: bold;
}

details > div {
    display: none;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 5px;
    border-radius: 5px;
}

details[open] > div {
    display: block;
}

summary::-webkit-details-marker {
    display: none;
}

summary::-moz-list-bullet {
    display: none;
}

summary {
    list-style: none;
    margin: 0;
    padding: 0;
}
