/**
 * Styles for non-translatable content
 */
.notranslate {
    /* Base styles for non-translatable content */
    position: relative;
}

/* Optional: Add a subtle indicator for editor use (not visible on frontend) */
body.wp-admin .notranslate {
    border: 1px dashed #b4b9be;
    padding: 5px;
    position: relative;
}

body.wp-admin .notranslate::before {
    content: "Ne pas traduire";
    position: absolute;
    top: -10px;
    left: 0;
    background: #f1f1f1;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #555;
}