/*
 * Denri Font Fix for Odoo 15
 * Injection point: web.layout <head>
 *
 * Scope: backend only (targets .o_web_client and related backend containers)
 * so website/front pages are not affected.
 */

:root { --denri-font-stack: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.o_web_client,
.o_web_client body,
.o_web_client .o_main,
.o_web_client .o_action_manager,
.o_web_client .o_content,
.o_web_client .o_navbar,
.o_web_client .o_menu_apps,
.o_web_client .o_menu_sections,
.o_web_client .o_control_panel,
.o_web_client .o_form_view,
.o_web_client .o_list_view,
.o_web_client .o_kanban_view,
.o_web_client .modal,
.o_web_client .dropdown-menu,
.o_web_client .o_dialog_container {
  font-family: var(--denri-font-stack) !important;
}
