.yp-progression-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 20px 0;
}

.yp-status-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.yp-status-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8c8f94;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.yp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #8c8f94;
    transition: inherit;
}

/* Hover & Active states */
.yp-status-btn:hover { background: #2c2c2c; }

/* En cours */
.yp-status-btn.yp-yellow.active {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
}
.yp-status-btn.yp-yellow.active .yp-dot { background: #f1c40f; box-shadow: 0 0 5px #f1c40f; }

/* À retravailler */
.yp-status-btn.yp-blue.active {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}
.yp-status-btn.yp-blue.active .yp-dot { background: #3498db; box-shadow: 0 0 5px #3498db; }

/* Maîtrisé */
.yp-status-btn.yp-green.active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}
.yp-status-btn.yp-green.active .yp-dot { background: #2ecc71; box-shadow: 0 0 5px #2ecc71; }

/* Bouton Favori */
.yp-favorite-btn {
    background: #2c2c2c;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #bdc3c7;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yp-favorite-btn:hover { background: #333; }

.yp-favorite-btn.active {
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
    background: rgba(241, 196, 15, 0.1);
}