/**
 * User Rank Colors and Titles CSS
 */

.username-with-rank {
    display: inline-block;
    text-align: center;
    margin-bottom: 5px;
}

.username {
    font-weight: bold;
    text-decoration: none;
}

.rank-title {
    font-size: 0.8em;
    color: #666;
    margin-top: 2px;
    line-height: 1.2;
}

/* Make username links inherit their color */
a .username-with-rank .username {
    text-decoration: none;
}

/* No hover effect for usernames */
a:hover .username-with-rank .username {
    text-decoration: none;
}

/* Profile page specific styling */
.profile-username .username {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Forum specific styling */
.topic-author-avatar .username-with-rank {
    max-width: 100%;
}

.topic-author-avatar .rank-title {
    word-wrap: break-word;
    white-space: normal;
}
