/* Comment Item Styles */
.comment-item {
    transition: all 0.3s ease;
}
.comment-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: -15px;
}

/* User Info and Rating Layout */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
}

/* Star Rating Styles */
.comment-stars {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push to the right */
}
.comment-stars i {
    font-size: 1.2rem;
    margin-right: 3px;
}

/* Media Queries for Responsive Layout */
@media (max-width: 576px) {
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-stars {
        margin-left: 0;
        margin-top: 0.5rem;
    }
} 