.ubr-profile-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Bouton de signalement */
.ubr-report-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #f39c12; /* Jaune pour "signaler" */
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.ubr-report-button:hover {
    opacity: 0.9;
}

/* Bouton désactivé après signalement */
.ubr-report-button.ubr-reported {
    background-color: #2ecc71; /* Vert pour "signalé" */
    cursor: not-allowed;
    opacity: 0.7;
}

/* Pour la liste des utilisateurs signalés */
.ubr-reported-list ul {
    list-style-type: none;
    padding: 0;
}

.ubr-reported-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ubr-reported-list li a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}
