.wox-label {
    padding: var(--space-3) var(--space-5);
    gap: var(--space-3);
    color: var(--fixed-white);

    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border-radius: var(--radius-radi-4);

    width: fit-content;
}

.wox-label.white {
    color: var(--gray-neutral-900, #090E19);
    background: var(--fixed-white);
}

.wox-label.gray {
    background: var(--gray-neutral-900);
}

.wox-label.blue {
    background: var(--blue-neutral-600);
}

.wox-label.green {
    background: var(--green-neutral-500);
}

.wox-label.yellow {
    background: var(--yellow-neutral-500);
}

.wox-label.red {
    background: var(--red-neutral-500);
}

.wox-label.violet {
    background: #5146CA;
}


.wox-label.orange {
    background: #FF9500;
}







