/* NXTRUNN Badge Styles */

.nxtrunn-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

/* Individual Badge - Outlined Style */
.nxtrunn-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: white;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.2s;
}

/* Woman-Run Badge */
.nxtrunn-badge-woman_run {
    border-color: #d77aa0;
    color: #d77aa0;
}

.nxtrunn-badge-woman_run:hover {
    background: #d77aa0;
    color: white;
}

/* BIPOC-Owned Badge */
.nxtrunn-badge-bipoc_owned {
    border-color: #8f657c;
    color: #8f657c;
}

.nxtrunn-badge-bipoc_owned:hover {
    background: #8f657c;
    color: white;
}

/* Badge in Admin Columns */
.column-badges .nxtrunn-badges {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nxtrunn-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}