/* Form Versioning - Status and Version Display Styles */

:root {
    --form-state-draft: #ffc107;
    --form-state-published: #28a745;
    --form-state-broken: #dc3545;
    --form-state-locked: #6c757d;
}

/* Base badge styling */
.form-status-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* Draft - yellow background with dark text for contrast */
.form-status-badge--draft {
    background-color: var(--form-state-draft);
    color: #212529;
}

/* Published - green background with white text */
.form-status-badge--published {
    background-color: var(--form-state-published);
    color: #fff;
}

/* Broken - red background with white text */
.form-status-badge--broken {
    background-color: var(--form-state-broken);
    color: #fff;
}

/* Locked - gray background with white text */
.form-status-badge--locked {
    background-color: var(--form-state-locked);
    color: #fff;
}

/* Version number display */
.form-version-display {
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
    font-variant-numeric: tabular-nums;
}
