/**
 * Hashtags, Mentions, and Links Styling
 */

/* Hashtags */
.hashtag {
    color: #1d9bf0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hashtag:hover {
    color: #0c7abf;
    text-decoration: underline;
}

.dark-mode .hashtag {
    color: #1d9bf0;
}

.dark-mode .hashtag:hover {
    color: #3ea8ff;
}

/* Mentions */
.mention {
    color: #1d9bf0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mention:hover {
    color: #0c7abf;
    text-decoration: underline;
}

.dark-mode .mention {
    color: #1d9bf0;
}

.dark-mode .mention:hover {
    color: #3ea8ff;
}

/* External Links in Posts */
.post-link {
    color: #1d9bf0;
    text-decoration: none;
    word-break: break-all;
    transition: all 0.2s ease;
}

.post-link:hover {
    text-decoration: underline;
}

.dark-mode .post-link {
    color: #1d9bf0;
}

.dark-mode .post-link:hover {
    color: #3ea8ff;
}

/* Post content styling */
.post-content {
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.post-content a {
    font-weight: 500;
}

/* Hashtag badge style (optional alternative) */
.hashtag.badge-style {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(29, 155, 240, 0.1);
    margin: 2px;
}

.hashtag.badge-style:hover {
    background: rgba(29, 155, 240, 0.2);
}


