/* Google Rating Widget Template Styles */

.google-rating-widget {
    max-width: 400px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.google-rating-widget:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.google-rating-widget .card-body {
    padding: 20px;
}

.google-rating-stars {
    font-size: 18px;
    margin-right: 10px;
}

.google-rating-stars i {
    margin-right: 2px;
}

.google-rating-score .rating-number {
    font-weight: bold;
    color: #333;
}

.google-rating-count {
    font-size: 14px;
    margin-top: 5px;
}

.google-logo {
    width: auto;
    max-width: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.google-rating-widget:hover .google-logo {
    opacity: 1;
}

/* Responsive adjustments for widget template */
@media (max-width: 576px) {
    .google-rating-widget {
        max-width: 100%;
    }
    
    .google-rating-widget .card-body {
        padding: 15px;
    }
    
    .google-rating-stars {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .google-logo {
        max-width: 50px;
    }
}