.reply-container {
    background: #CCCCCC; /* Default background color */
    border-radius: 2px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for the background color */
    display: inline-block; /* Allow the background to fit tightly around the text */
}

.reply-link {
    color: #fff; /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 10px; /* Font size */
    text-transform: uppercase; /* Uppercase text */
    font-family: 'Ubuntu', sans-serif; /* Font family */
    font-weight: normal; /* Font weight */
    padding: 7px 10px; /* Adjusted padding for vertical centering */
    display: inline-block; /* Allows the link to take up only as much space as necessary */
    line-height: 1; /* Ensures the text is centered within the button */
}

.reply-container:hover {
    background: #F4691D; /* Change to hover color */
}

.reply-link:hover {
    color: #fff; /* Change text color on hover */
}

.comment-avatar {
    width: 50px; /* Set the width */
    height: 50px; /* Set the height */
    border: 2px solid #dedede; /* Set the border color */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

