
/* Article Comments */
.vertical-line {
    position: relative;
}

.vertical-line::after {
    content: "";
    position: absolute;
    left: 0; /* Adjust this to place the line on a different side */
    top: 60px;
    bottom: 0;
    margin-left: 19px;
    width: 1px; /* Line thickness */
    background-color: rgba(237, 239, 241);
}

.user-avatar {
    width: 2rem;
    height: 2rem;
}

.comment-reaction {
    padding: 3px 5px;
    font-size: 12px;
    margin: 0 2px;
}

.user-avatar {
    font-size: 1rem;
    width: 40px;
    height: 40px;
}

.comment-reaction-actions .reactions {
    margin-top: -5rem;
}

.reactions {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transition-delay: 0.25s;
    transition-timing-function: linear;
    position: absolute;
    margin-top: -3rem;
    margin-left: -1rem;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    padding: 3px;
    box-shadow: 0 4px 1px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}

.reaction {
    cursor: pointer;
    padding: 0 5px;
    transition: all .125s cubic-bezier(.14,.09,.74,.32);
}

.reaction:hover {
    transform: scale(1.5) translateY(-8px);
}

.thumbs-up-btn:hover + .reactions {
    transition: all 0.5s ease;
    opacity: 1;
    visibility: visible;
    transition-delay: 0.25s;
}

.reactions:hover {
    opacity: 1;
    visibility: visible;
}

.reaction .disable-style {
    all: unset;
}
/* Article Coments END */

.hover-underline {
    text-decoration: none;

    &:hover {
        text-decoration: underline;
        color: var(--lg-info);
    }
}

.developer-pre-text {
    background-color: #212529; /* Dark text color */
    color: #f8f9fa; /* Light background color */
}
.developer-pre-text::selection {
    background-color: #ffcc00; /* Change this to your desired highlight color */
    color: #000000; /* Change this to your desired text color */
}
