#notation-bandeau {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 15px;
    margin: 10px auto;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #495057;
    font-family: 'Arial', sans-serif;
    height: auto;
    min-height: 64px;
}

#notation-bandeau .notation-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    min-width: 150px;
    gap: 10px;
}

#notation-bandeau .notation-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#notation-bandeau .notation-item a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    width: 100%;
    gap: 8px;
}

#notation-bandeau .source-icon {
    width: 20px;
    height: 20px;
    filter: none;
    flex-shrink: 0;
}

#notation-bandeau .rating-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

#notation-bandeau .left-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#notation-bandeau .right-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

#notation-bandeau .source-name {
    font-weight: 600;
    font-size: 1em;
    color: #343a40;
    white-space: nowrap;
    text-align: left;
}

#notation-bandeau .rating-stars {
    color: #ffc107;
    font-size: 1.2em;
    line-height: 1;
    letter-spacing: 0.5px;
}

#notation-bandeau .rating-stars .star {
    display: inline-block;
    text-shadow: 0 0 1px #333;
    -webkit-text-stroke: 0.5px #333;
}

#notation-bandeau .rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.1;
}

#notation-bandeau .rating-value {
    font-weight: 700;
    color: #495057;
    font-size: 1.4em;
    line-height: 1;
    padding: 0;
    margin: 0;
}

#notation-bandeau .review-count {
    font-size: 0.9em;
    color: #6c757d;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

/* Icônes spécifiques */
#notation-bandeau .notation-item.internal .source-icon {
    content: url('/favicon-32x32.png');
    border-radius: 2px;
}
#notation-bandeau .notation-item.google .source-icon {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234285f4"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}
#notation-bandeau .notation-item.facebook .source-icon {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231877f2"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

/* Media queries pour responsive */

/* Tablettes en mode paysage */
@media (max-width: 1024px) {
    #notation-bandeau {
        margin: 8px;
        padding: 5px 12px;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    #notation-bandeau .notation-item {
        min-width: 120px;
        padding: 5px 10px;
    }
}

/* Tablettes en mode portrait */
@media (max-width: 768px) {
    #notation-bandeau {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        margin: 5px;
    }
    
    #notation-bandeau .notation-item {
        width: 100%;
        max-width: none;
        min-width: auto;
        justify-content: center;
    }
    
    #notation-bandeau .notation-item a {
        justify-content: center;
    }
    
    #notation-bandeau .rating-content {
        justify-content: center;
        gap: 15px;
    }
}

/* Smartphones en mode paysage */
@media (max-width: 640px) {
    #notation-bandeau {
        margin: 5px;
        padding: 8px;
        gap: 6px;
    }
    
    #notation-bandeau .notation-item {
        padding: 4px 8px;
        min-height: 50px;
    }
    
    #notation-bandeau .source-name {
        font-size: 0.95em;
    }
    
    #notation-bandeau .rating-value {
        font-size: 1.3em;
    }
    
    #notation-bandeau .review-count {
        font-size: 0.8em;
    }
}

/* Smartphones en mode portrait */
@media (max-width: 480px) {
    #notation-bandeau {
        margin: 5px;
        padding: 6px;
        gap: 5px;
    }
    
    #notation-bandeau .notation-item {
        padding: 3px 6px;
        min-height: 45px;
        gap: 8px;
    }
    
    #notation-bandeau .source-icon {
        width: 18px;
        height: 18px;
    }
    
    #notation-bandeau .rating-content {
        gap: 10px;
    }
    
    #notation-bandeau .source-name {
        font-size: 0.9em;
    }
    
    #notation-bandeau .rating-stars {
        font-size: 1.1em;
    }
    
    #notation-bandeau .rating-value {
        font-size: 1.2em;
    }
    
    #notation-bandeau .review-count {
        font-size: 0.85em;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    #notation-bandeau {
        padding: 4px;
        gap: 4px;
    }
    
    #notation-bandeau .notation-item {
        padding: 2px 4px;
        min-height: 40px;
        gap: 6px;
    }
    
    #notation-bandeau .source-icon {
        width: 16px;
        height: 16px;
    }
    
    #notation-bandeau .source-name {
        font-size: 0.85em;
    }
    
    #notation-bandeau .rating-value {
        font-size: 1.1em;
    }
    
    #notation-bandeau .review-count {
        font-size: 0.7em;
    }
} 