.comment-container {
    background: white;
    overflow: hidden;
    margin-bottom: 30px;
}

.comment-container .comment-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e4e6ea;
    background: #f8f9fa;
}

.comment-container .comment-title {
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 4px;
}

.comment-container .comment-subtitle {
    font-size: 14px;
    color: #65676b;
}

.comment-container .comment-input-section {
    padding: 20px;
    background: #f8f9fa;
}

.comment-container .input-group {
    margin-bottom: 16px;
}

.comment-container .input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
}

.comment-container .name-inputs {
    display: flex;
    gap: 12px;
}

.comment-container .name-inputs input {
    flex: 1;
}

.comment-container input[type="text"],
.comment-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccd0d5;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s ease;
}

.comment-container input[type="text"]:focus,
.comment-container textarea:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

.comment-container textarea {
    resize: vertical;
    min-height: 80px;
}

.comment-container .submit-btn {
    background: #2e6e35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-container .submit-btn:hover {
    background: #e68729;
}

.comment-container .submit-btn:disabled {
    background: #e4e6ea;
    color: #bcc0c4;
    cursor: not-allowed;
}

.comment-container .comments-list {
    padding: 20px;
}

.comment-container .comment-item {
    display: flex;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f2f5;
}

.comment-container .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-container .comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e4e6ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #65676b;
    margin-right: 12px;
    flex-shrink: 0;
}

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

.comment-container .comment-author {
    font-weight: 600;
    color: #1c1e21;
    font-size: 14px;
    margin-bottom: 4px;
}

.comment-container .comment-text {
    color: #1c1e21;
    font-size: 14px;
    line-height: 1.4;
}

.comment-container .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #65676b;
    font-style: italic;
}

.tags-container {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tags {
    padding: 10px 20px;
    background-color: #f8f9fa;
}

.tags-label {
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    color: #0fa858;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}


.news-container-active-pages .news-item:first-child {
    border-top: 1px solid #e9ecef;
}

.news-container-active-pages .news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-left: 0px;
}

.news-container-active-pages .news-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-container-active-pages .news-content {
    flex: 1;
}

.news-container-active-pages .news-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.news-container-active-pages .news-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

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