/* Force green for all tournament completed badges - match game score green */
.badge.bg-success {
    background-color: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

/* Target Bootstrap CSS variables if they exist */
:root {
    --bs-success: #28a745 !important;
}

/* Specific tournament page overrides */
[data-bs-target] .badge.bg-success,
.accordion .badge.bg-success,
.accordion-button .badge.bg-success,
.completed-round .badge {
    background-color: #28a745 !important;
    color: white !important;
}

/* Override any inline styles */
.badge.bg-success[style] {
    background-color: #28a745 !important;
    color: white !important;
}