/* FormTemplateStatusBadge.css */

.form-template-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.form-template-status-badge i {
    font-size: 10px;
}

/* Brouillon - Orange */
.form-template-status-badge.badge-draft {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

/* Publié - Vert */
.form-template-status-badge.badge-published {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

/* Archivé - Gris */
.form-template-status-badge.badge-archived {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}
