.square {
    height: 10px;
    width: 10px;
    background-color: #ad8dc7;
    border-radius: 15%;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    font-style: normal;
    margin-top: 7px;
    margin-left: 5px;
    margin-right: 5px;
}

.profile-card {
    background-color: #12081e;
    color: white;
    display: flex;
    padding: 15px 0 5px 10px;
}

.profile-user-title {
    padding: 10px;
    font-size: 18px;
    float: left;
    display: flex;
}

.profile-user-title-right {
    padding: 10px;
    text-align: right;
    border-bottom: solid 1px;
    border-color: #ad8dc7;
    background-color: #0c0614;
    color: #ad8dc7;
    font-size: 18px;
}

.profile-photo {
    display: flex;
    width: 35%;
    max-width: 290px;
    height: auto;
    padding: 5px;
    justify-content: flex-start;
    flex-direction: column;
}

.profile-photo img {
    width: 100%;
    box-shadow: rgb(179 135 219 / 79%) 0px 0px 3px 1px;
    border-radius: 10px;
}

.profile-edit {
    width: 100%;
    padding: 5px;
    margin: 15px 0 0 0;
    display: flex;
    flex-flow: wrap;
    background-color: #0c0614;
    border-top: solid 1px;
    border-color: rgb(180 135 219);
    border-radius: 10px;
}

.profile-edit hr {
    border-color: #ad8dc7;
    border-style: hidden;
}

.profile-edit ul {
    width: 100%;
    margin: 10px 35px;
    padding: 0;
}

.profile-edit li {
    text-align: left;
    padding: 0 0 5px 0;
    margin: 0 0 0 -15px;
    color: #ad8dc7;
    list-style-type: none;
}

.profile-edit h3 {
    background-color: rgb(28, 0, 64);
    text-align: center;
    margin: 0 0 0 25%;
}

.profile-data {
    display: fixed;
    margin: 5px 10px 10px 15px;
    width: 75%;
    word-break: break-all;
}

.profile-data-info {
    list-style-type: none;
    padding: 5px;
    color: plum;
}

.profile-data-card {
    list-style-type: none;
    padding: 25px 5px;
    color: plum;
}

.profile-data-title {
    background-color: #0c0614;
}

.profile-data-title h3 {
    padding: 5px;
    color: #ad8dc7;
    font-size: 18px;
    border-bottom: solid 1px;
    text-decoration: none;
    margin: 0;
}

.user-navi-short {
    display: inline-block;
    position: absolute;
    width: 85%;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
}

.user-navi-short p {
    display: inline;
    padding: 0 0 0 5px;
}

.user-gender {
    display: inline-block;
}

.user-gender img {
    width: 12px;
    height: 12px;
    box-shadow: none;
    border: none;
}

.user-status-online {
    color: rgb(0, 128, 0);
    display: inline-block;
}

.user-status-online img {
    width: 12px;
    height: 12px;
}

.user-status-offline {
    color: #FF0000;
    display: inline-block;
}

.user-status-offline img {
    width: 12px;
    height: 12px;
}

.user-status-text {
    color: plum;
    display: inline-block;
}








.profile-data-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.profile-data-two-columns .profile-data-item {
    flex: 0 0 48%;
    box-sizing: border-box;
    padding: 8px 12px;
    background-color: #0c0614;
    border-radius: 6px;
    color: #ad8dc7;
    font-weight: 500;
    margin: 5px;
}

.profile-data-fullwidth {
    margin: 0px 5px 15px 5px;
    padding: 10px 15px;
    background-color: #0c0614;
    border-radius: 6px;
    color: #dda0dd;
    font-weight: 400;
}

.profile-data-text {
    color: plum; 
    white-space: pre-wrap;
    line-height: 1.5; 
}

/* Optional: Überschriften schöner machen */
.profile-data-title h3 {
    color: #ad8dc7;
    margin-bottom: 10px;
    border-bottom: 1px solid #ad8dc7;
    padding-bottom: 5px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}