.refugion-comments-widget {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Quicksand', sans-serif;
}

.refugion-comments-widget .comments-title {
    font-size: 2em;
    margin-bottom: 1.5em;
    text-align: center;
    color: #333;
}

.refugion-comments-widget .comment-form {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2em;
}

.refugion-comments-widget .comment-form label {
    display: block;
    margin-bottom: 0.5em;
    color: #666;
}

.refugion-comments-widget .comment-form textarea,
.refugion-comments-widget .comment-form input[type="text"],
.refugion-comments-widget .comment-form input[type="email"] {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1em;
}

.refugion-comments-widget .comment-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.refugion-comments-widget .comment-form input[type="submit"]:hover {
    background-color: #0056b3;
}

.refugion-comments-widget .comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.refugion-comments-widget .comment-item {
    display: flex;
    gap: 1em;
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.refugion-comments-widget .comment-avatar img {
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.refugion-comments-widget .comment-content {
    flex: 1;
}

.refugion-comments-widget .comment-meta {
    margin-bottom: 0.5em;
    color: #666;
}

.refugion-comments-widget .comment-author {
    font-weight: 600;
    color: #333;
}

.refugion-comments-widget .comment-date {
    font-size: 0.9em;
    color: #999;
}

.refugion-comments-widget .comment-text {
    line-height: 1.6;
    color: #444;
}

.refugion-comments-widget .no-comments {
    text-align: center;
    color: #666;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refugion-comments-widget .comment-item {
        flex-direction: column;
    }
    
    .refugion-comments-widget .comment-avatar {
        margin-bottom: 1em;
    }
}