.listcharall {
    display: flex;
    align-items: stretch;
    gap: 25px;
    height: 250px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background: var(--color5);
    border: 1px solid var(--color3);
    color: #d5dcd5;
    text-transform: uppercase;
}

/* Avatar */

.listcharavatar {
    flex: 0 0 180px;
    height: 100%;
}

.listcharavatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--color4);
}

/* Profil */

.listcharprofil {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.listcharname {
    flex-shrink: 0;
    margin-bottom: 10px;
    font-family: 'Grimoire', serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #db715b;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,.7);
}

.listchartext {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    text-transform: none;
    line-height: 1.6;
    font-size: 12px;
}

/* Rechte Spalte */

.listcharboxright {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.listcharbox {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(65, 76, 70, 0.65);
}

.listcharbox1 {
    flex: 0 0 40%;
    padding: 10px;
    background: rgba(0,0,0,.18);
    font-weight: 600;
    text-align: center;
    color: #db715b;
}

.listcharbox2 {
    flex: 1;
    padding: 10px;
    text-align: center;
}

/* Scrollbar */

.listchartext::-webkit-scrollbar {
    width: 6px;
}

.listchartext::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.listchartext::-webkit-scrollbar-thumb {
    background: #db715b;
    border-radius: 10px;
}