#review .reviews-container { 
    margin-bottom: 20px; 
}

#review .review-card {
    padding: 10px 15px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    border-left: 3px solid #1e91cf;
}

#review .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 4px;
}

#review .author-info { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

#review .author-name { 
    font-weight: 700; 
    font-size: 13px; 
    color: #333; 
}

#review .review-date { 
    font-size: 11px; 
    color: #999; 
}

#review .review-rating { 
    font-size: 10px; 
    color: #ffbc00; 
}

#review .star-empty { 
    color: #ddd; 
}

#review .review-body { 
    padding: 8px 12px; 
    background: #fbfdff; 
    border-radius: 4px;
    border: 1px solid #e1f0fa;
    margin-top: 5px;
    position: relative;
}

#review .review-body::before {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    left: 6px;
    top: 6px;
    font-size: 10px;
    color: #aadbfa;
    opacity: 0.7;
}

#review .review-body p {
    font-size: 13px;
    line-height: 1.5;
    color: #1e293b;
    margin: 0;
    padding-left: 15px;
}

#review .pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

#review .results-text { 
    font-size: 11px; 
    color: #999; 
}

#review .pagination { 
    margin: 0 !important; 
}

#review .pagination > li > a, 
#review .pagination > li > span { 
    padding: 4px 8px !important; 
    font-size: 12px !important; 
}