.ponderation-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 280px;

    background: rgba(15, 20, 45, 0.85);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    padding: 1.5rem;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);

    z-index: 3;
}

.ponderation-title {
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ponderation-bar-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.ponderation-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    border-radius: 5px;
    transition: width 0.6s ease;
}

.ponderation-value {
    margin-top: 0.7rem;
    text-align: right;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.3rem;
}

.ponderation-bar-fill.low {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}
.ponderation-bar-fill.high {
    background: linear-gradient(90deg, #ffcc00, #ff6600);
}