.comment {
    background-color: #151f30;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    color: #f1f1f1;
    display: flex;
    align-items: flex-start;
}

.comment img.userfoto {
    margin-right: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.comment-content-container {
    flex: 1;
}

.comment-content {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.comment-footer {
    font-size: 12px;
}

.comment-author {
    font-weight: bold;
    color: #737373;
    text-decoration: none;
}

.comment-time {
    float: right;
    color: #aaa;
}

.comment-thumbs {
    float: right;
    margin-left: 10px;
    color: #ccc;
}

.comment-thumbs i {
    margin-right: 5px;
}

.show_rate_green {
    color: #5cb85c;
}

.show_rate_red {
    color: #d9534f;
}

.floatitright {
    margin-right: 5px;
}

.comments {
    padding-right: 10px;
}

.comments::-webkit-scrollbar {
    width: 10px;
    background-color: #151f30;
}

.comments::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #444;
}

.comments::-webkit-scrollbar-thumb:hover {
    background-color: #f1f1f1;
}

/* Comment form styles */
.comment-form {
    background-color: #151f30;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
}

.comment-form-fields {
    margin-bottom: 10px;
}

.comment-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #1c2a44;
    border: 1px solid #444;
    border-radius: 3px;
    color: #f1f1f1;
}

.comment-textarea {
    width: 100%;
    height: 80px;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #1c2a44;
    border: 1px solid #444;
    border-radius: 3px;
    color: #f1f1f1;
    resize: vertical;
}

.comment-button {
    background-color: #e50914;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: bold;
}

.comment-button:hover {
    background-color: #b2070f;
}


/* Add a special class for personal comments */
.personal-comment {
    background-color: #1c2a44;
    border-left: 3px solid #e50914;
    margin-top: 5px;
    /* margin-bottom: 15px; */
}
