.user-profile {
    max-width: 100%;
    /*margin: 2rem auto;*/
    padding: 2rem;
    padding-top:0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.user-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.user-info .avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #007acc;
}

.user-info .details h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #222;
}

.user-info .details p {
    margin: 0.2rem 0;
    color: #555;
}

.user-rank {
    font-weight: bold;
    color: #007acc;
}

.user-posts-list h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #007acc;
    padding-bottom: 0.5rem;
}

.user-posts-list ul {
    list-style: none;
    padding: 0;
}

.user-posts-list li {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
}

.user-posts-list a {
    color: #007acc;
    text-decoration: none;
}

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

.post-date {
    color: #999;
    font-size: 0.9rem;
}


.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    border-radius: 50%;
    vertical-align: middle;
}


.status-dot.online {
    background: radial-gradient(circle at 30% 30%, #4cff4c, #00b300);
    box-shadow: 
        0 0 6px rgba(0, 255, 0, 0.8),
        0 0 12px rgba(0, 255, 0, 0.5);
}

.status-dot.offline {
    background: radial-gradient(circle at 30% 30%, #e0e0e0, #9e9e9e);
    box-shadow: 
        inset 0 0 2px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}



.socialLinks {
    display: flex;
    gap: 12px;
    align-items: center;
}

.socialLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.socialLinks a:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* Icon Größe */
.socialLinks svg {
    width: 40px;
    height: 40px;
}


.socialLinks {
    display: flex;
    gap: 12px;
}

/* Basis-Link */
.socialLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;

    color: #666; /* fallback */
    text-decoration: none;

    border-radius: 50%;
    transition: all 0.2s ease;
}

/* 🔵 Facebook */
.facebookLink a {
    color: #1877F2 !important;
}
.facebookLink a:hover {
    color: #fff;
}

/* ⚫ X / Twitter */
.twitterLink a {
    color: #000000 !important;
}
.twitterLink a:hover {
    color: #fff;
}

/* 🔵 LinkedIn */
.linkedinLink a {
    color: #0A66C2 !important;
}
.linkedinLink a:hover {
    color: #fff;
}

/* 🌈 Instagram */
.instagramLink a {
    color: #E4405F !important;
}
.instagramLink a:hover {
    color: #fff;
}

/* 🔴 YouTube */
.youtubeLink a {
    color: #FF0000 !important;
}
.youtubeLink a:hover {
    color: #fff;
}

.xingLink a {
    color: #006567 !important;
}

.xingLink a:hover {
    color: #fff;
}