/* Google-style star ratings */
.google-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.google-star {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
}

.google-star::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1;
}

.google-star.filled::before {
    color: #fbbc04;
}

.google-star.half-filled::before {
    background: linear-gradient(90deg, #fbbc04 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Larger stars for cards */
.google-stars-lg .google-star {
    width: 20px;
    height: 20px;
}

.google-stars-lg .google-star::before {
    font-size: 20px;
}

/* Small stars for inline use */
.google-stars-sm .google-star {
    width: 14px;
    height: 14px;
}

.google-stars-sm .google-star::before {
    font-size: 14px;
}

/* Rating number style like Google */
.google-rating {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    color: #1a73e8;
    margin-left: 4px;
}

/* Google-style review card */
.google-review-card {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}

.google-review-card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.google-review-author {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    color: #202124;
    font-size: 14px;
}

.google-review-date {
    color: #5f6368;
    font-size: 12px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.google-review-text {
    color: #3c4043;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 8px;
}

/* Google-style platform badges */
.google-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    color: #5f6368;
}

.google-platform-badge.gmb {
    background: #fef7e0;
    border-color: #fdd663;
    color: #ea8600;
}

/* AI Response styling */
.ai-response-card {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #d1d5db;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    position: relative;
}

.ai-response-card::before {
    content: "🤖";
    position: absolute;
    top: -6px;
    left: 8px;
    background: white;
    padding: 0 4px;
    font-size: 12px;
}

.ai-response-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ai-response-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
}

.ai-response-status.posted {
    color: #059669;
}

.ai-response-status.generated {
    color: #d97706;
}