
    .google-reviews-widget {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        margin: 10px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .gbr-reviews-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .gbr-reviews-header h3 {
        margin: 0;
        color: #333;
    }
    
    .gbr-refresh-btn {
        background: #4285f4;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .gbr-refresh-btn:hover {
        background: #3367d6;
    }
    
    .gbr-review-item {
        display: flex;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .gbr-review-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .gbr-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }
    
    .gbr-review-content {
        flex: 1;
    }
    
    .gbr-author {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .gbr-rating {
        margin-bottom: 5px;
    }
    
    .gbr-stars {
        color: #ffc107;
        font-size: 16px;
    }
    
    .gbr-text {
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .gbr-time {
        font-size: 12px;
        color: #666;
    }
    
    /* Position classes */
    .google-reviews-widget.bottom-right {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 300px;
        z-index: 1000;
    }
    
    .google-reviews-widget.bottom-left {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 300px;
        z-index: 1000;
    }
    
    .google-reviews-widget.top-right {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 300px;
        z-index: 1000;
    }
    
    .google-reviews-widget.top-left {
        position: fixed;
        top: 20px;
        left: 20px;
        width: 300px;
        z-index: 1000;
    }
    