/* Gesamt-Wrapper */
.aussch-user-portal {
    background:#f7f7f7;
    border:1px solid #e1e1e1;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
    margin-bottom:40px;
    display:flex;
    gap:24px;
}

/* Linkes Menü */
.aussch-user-portal .aussch-left {
    background:#f0f0f0;
    border:1px solid #dcdcdc;
    padding:20px;
    border-radius:10px;
    min-width:240px;
}

/* Menü-Überschrift */
.aussch-user-portal h2 {
    font-size:20px;
    margin-bottom:20px;
    color:#222;
}

/* Menü-Buttons */
.aussch-btn {
    display:block;
    background:#ffffff;
    border:1px solid #000;
    padding:10px 14px;
    border-radius:6px;
    margin-bottom:12px;
    font-size:15px;
    font-weight:600;
    color:#000;
    text-decoration:none;
    transition:all 0.2s ease;
}

/* Hover-Effekt */
.aussch-btn:hover {
    background:#000;
    color:#fff;
}

/* Rechte Seite */
.aussch-user-portal .aussch-right {
    background:#fff;
    border:1px dotted #999;
    padding:20px;
    border-radius:10px;
    flex:1;
}

/* Liste */
.aussch-user-list {
    list-style:none;
    padding:0;
    margin:0;
}

/* Einzelner Eintrag */
.aussch-user-list li {
    padding:12px 0;
    border-bottom:1px dotted #ccc;
    font-size:15px;
}

/* Titel */
.aussch-user-list li strong {
    font-size:16px;
    color:#222;
}

/* Links: Ansehen / Bearbeiten / Löschen */
.aussch-user-list a {
    color:#0056d6;
    font-weight:600;
    text-decoration:none;
    margin-right:8px;
}

.aussch-user-list a:hover {
    text-decoration:underline;
}
