
.comment-container {
    width: auto;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.comment {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.comment {
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f9f9f9;
    border-left: 4px solid #507687;
    transition: background 0.3s ease-in-out;
}

.comment:hover {
    background: #f1f1f1;
}

.comment strong {
    color: #507687;
}

.nested-comment {
    margin-left: 20px;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}

.comment .reply-button {
    font-size: 0.9em;
    color: #507687;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    margin-top: 5px;
}
  
.comment .reply-button:hover {
    color: #3f5f6d;
}

.comment textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.reply-form {
    margin-top: 8px;
    display: none;
}