/* ==========================================================================
   NW CS Console — Odoo 18 Community backend mirror (light theme only).
   Recreated, not copied: muted purple-grey chrome, white sheets on #f9f9fb,
   ~40px list rows, statusbar, smart buttons, chatter, centered wizard modals.
   ========================================================================== */

:root {
  --o-brand: #714B67;
  --o-brand-dark: #5e3e56;
  --o-brand-light: #8f6b85;
  --o-ground: #f9f9fb;
  --o-sheet: #ffffff;
  --o-border: #d8dadd;
  --o-border-light: #e7e9ed;
  --o-text: #374151;
  --o-text-strong: #111827;
  --o-muted: #6b7280;
  --o-primary: #714B67;
  --o-success: #28a745;
  --o-success-bg: #d4edda;
  --o-success-border: #c3e6cb;
  --o-success-text: #155724;
  --o-info: #17a2b8;
  --o-info-bg: #d1ecf1;
  --o-info-text: #0c5460;
  --o-warning-bg: #fff3cd;
  --o-warning-border: #ffeeba;
  --o-warning-text: #856404;
  --o-danger: #dc3545;
  --o-danger-bg: #f8d7da;
  --o-danger-border: #f5c6cb;
  --o-danger-text: #721c24;
  --o-motherhood-bg: #fde7f0;
  --o-motherhood-border: #f0a6c9;
  --o-motherhood-text: #b3105e;
  --o-row-h: 40px;
  --o-radius: 4px;
  --o-shadow: 0 1px 2px rgba(0,0,0,.08), 0 1px 6px rgba(0,0,0,.05);
  --o-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
            Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--o-font);
  font-size: 13px;
  line-height: 1.45;
  color: var(--o-text);
  background: var(--o-ground);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { color: var(--o-text-strong); font-weight: 600; margin: 0 0 .4em; }
a { color: var(--o-primary); text-decoration: none; cursor: pointer; }
a:hover { text-decoration: underline; }
table { border-collapse: collapse; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.o_boot_msg { padding: 40px; text-align: center; color: var(--o-muted); }

/* ---------- App shell / navbar ---------- */
.o_web_client { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.o_navbar {
  display: flex; align-items: center; gap: 12px;
  background: var(--o-brand); color: #fff;
  height: 46px; padding: 0 12px; flex: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
  z-index: 200;
}
.o_navbar .o_menu_brand {
  font-weight: 600; font-size: 15px; color: #fff; white-space: nowrap;
}
.o_navbar .o_menu_brand:hover { text-decoration: none; opacity: .9; }
.o_navbar_spacer { flex: 1; }
.o_navbar .o_user_chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border-radius: 14px;
  padding: 3px 12px; font-size: 12px; white-space: nowrap;
}
.o_navbar .o_user_chip .o_role { opacity: .75; }
.o_navbar button.o_logout {
  background: none; border: none; color: #fff; opacity: .8; cursor: pointer;
  font-size: 12px; padding: 4px 6px;
}
.o_navbar button.o_logout:hover { opacity: 1; text-decoration: underline; }

.o_action_manager { flex: 1; display: flex; flex-direction: column; min-height: 0; }

/* ---------- Control panel ---------- */
.o_control_panel {
  background: var(--o-sheet);
  border-bottom: 1px solid var(--o-border);
  padding: 8px 16px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  flex: none; z-index: 100;
}
.o_breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 15px; min-width: 0; }
.o_breadcrumb a { color: var(--o-primary); }
.o_breadcrumb .sep { color: var(--o-muted); }
.o_breadcrumb .active { font-weight: 600; color: var(--o-text-strong);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.o_cp_buttons { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.o_cp_searchview { flex: 1; min-width: 200px; display: flex; justify-content: center; }
.o_cp_searchview input {
  width: 100%; max-width: 560px;
  border: 1px solid var(--o-border); border-radius: var(--o-radius);
  padding: 6px 10px; background: #fff;
}
.o_cp_searchview input:focus { outline: 2px solid rgba(113,75,103,.35); border-color: var(--o-brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid transparent; border-radius: var(--o-radius);
  padding: 5px 12px; font-size: 13px; font-weight: 500;
  cursor: pointer; background: #fff; color: var(--o-text);
  white-space: nowrap; line-height: 1.4;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--o-brand); border-color: var(--o-brand); color: #fff; }
.btn-primary:not(:disabled):hover { background: var(--o-brand-dark); }
.btn-secondary { background: #fff; border-color: var(--o-border); color: var(--o-text); }
.btn-secondary:not(:disabled):hover { background: #f3f4f6; }
.btn-danger { background: var(--o-danger); border-color: var(--o-danger); color: #fff; }
.btn-danger:not(:disabled):hover { background: #bb2d3b; }
.btn-warning { background: #ffc107; border-color: #ffc107; color: #3d3417; }
.btn-link { background: none; border: none; color: var(--o-primary); }
.btn-link:hover { text-decoration: underline; }
.btn-sm { padding: 2px 8px; font-size: 12px; }
.btn-lg { padding: 9px 18px; font-size: 15px; }

/* ---------- Content / sheet ---------- */
.o_content { flex: 1; overflow: auto; }
.o_form_view { padding: 16px 16px 48px; }
.o_form_sheet_bg { display: flex; gap: 16px; align-items: flex-start; max-width: 1420px; margin: 0 auto; }
.o_form_sheet_col { flex: 1 1 auto; min-width: 0; }
.o_form_sheet {
  background: var(--o-sheet); border: 1px solid var(--o-border);
  border-radius: var(--o-radius); box-shadow: var(--o-shadow);
  padding: 24px 32px; position: relative; overflow: hidden;
}
.o_form_statusbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--o-sheet); border: 1px solid var(--o-border);
  border-bottom: none;
  border-radius: var(--o-radius) var(--o-radius) 0 0;
  padding: 6px 16px; gap: 12px; flex-wrap: wrap;
}
.o_form_statusbar + .o_form_sheet { border-radius: 0 0 var(--o-radius) var(--o-radius); }
.o_statusbar_buttons { display: flex; gap: 6px; flex-wrap: wrap; }
.o_statusbar_status { display: flex; direction: rtl; }
.o_statusbar_status .o_arrow_button {
  direction: ltr;
  border: 1px solid var(--o-border); border-left: none;
  background: #fff; color: var(--o-muted);
  padding: 4px 14px 4px 20px; font-size: 12px; font-weight: 500;
  position: relative; cursor: default;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
  margin-left: -8px;
}
.o_statusbar_status .o_arrow_button:first-child { margin-left: 0; }
.o_statusbar_status .o_arrow_button.active {
  background: var(--o-brand); color: #fff; border-color: var(--o-brand); font-weight: 600;
}

/* smart-button box */
.oe_button_box {
  display: flex; flex-wrap: wrap; margin: -24px -32px 16px;
  border-bottom: 1px solid var(--o-border-light);
}
.oe_button_box .oe_stat_button {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  min-width: 120px; padding: 8px 14px; gap: 1px;
  border: none; border-right: 1px solid var(--o-border-light);
  background: none; cursor: pointer; text-align: left; color: var(--o-text);
}
.oe_button_box .oe_stat_button:hover { background: #f3f0f2; }
.oe_button_box .oe_stat_button:disabled { opacity: .45; cursor: not-allowed; }
.oe_stat_button .o_stat_value { font-weight: 600; color: var(--o-brand); font-size: 13px; }
.oe_stat_button .o_stat_text { font-size: 11px; color: var(--o-muted); }

.oe_title h1 { font-size: 22px; margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.o_form_subtitle { color: var(--o-muted); margin: 2px 0 12px; }

/* form groups */
.o_group { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px; margin: 12px 0; }
.o_group.o_group_col1 { grid-template-columns: 1fr; }
.o_field_row { display: grid; grid-template-columns: 150px 1fr; align-items: baseline; gap: 8px; min-height: 26px; }
.o_field_row label { color: var(--o-muted); font-size: 12px; font-weight: 500; }
.o_field_row .o_field_value { color: var(--o-text-strong); }
.o_field_row input, .o_field_row select, .o_field_row textarea {
  width: 100%; border: none; border-bottom: 1px solid transparent;
  padding: 2px 0; background: transparent; color: var(--o-text-strong);
}
.o_field_row input:hover, .o_field_row textarea:hover { border-bottom-color: var(--o-border); }
.o_field_row input:focus, .o_field_row textarea:focus, .o_field_row select:focus {
  outline: none; border-bottom: 1px solid var(--o-brand);
}

.o_input {
  border: 1px solid var(--o-border); border-radius: var(--o-radius);
  padding: 5px 8px; background: #fff; width: 100%;
}
.o_input:focus { outline: 2px solid rgba(113,75,103,.3); border-color: var(--o-brand); }

/* notebook tabs */
.o_notebook { margin-top: 16px; }
.o_notebook_headers { display: flex; gap: 2px; border-bottom: 1px solid var(--o-border); }
.o_notebook_headers button {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 7px 14px; cursor: pointer; color: var(--o-muted); font-weight: 500;
}
.o_notebook_headers button.active { color: var(--o-brand); border-bottom-color: var(--o-brand); }
.o_notebook_page { padding: 12px 0; }

/* ---------- Lists ---------- */
.o_list_view {
  background: var(--o-sheet); border: 1px solid var(--o-border);
  border-radius: var(--o-radius); box-shadow: var(--o-shadow); overflow: auto;
}
.o_list_table { width: 100%; font-size: 13px; }
.o_list_table th {
  text-align: left; font-weight: 600; color: var(--o-muted); font-size: 12px;
  padding: 0 10px; height: 34px; border-bottom: 1px solid var(--o-border);
  background: var(--o-sheet); position: sticky; top: 0; white-space: nowrap;
}
.o_list_table td {
  padding: 0 10px; height: var(--o-row-h);
  border-bottom: 1px solid var(--o-border-light); vertical-align: middle;
}
.o_list_table tbody tr { cursor: pointer; }
.o_list_table tbody tr:hover { background: #f1eef0; }
.o_list_table tbody tr.o_selected { background: #e6dfe4; }
.o_list_table .num { text-align: right; font-variant-numeric: tabular-nums; }
.o_list_table td input {
  border: 1px solid transparent; border-radius: 2px; background: transparent;
  padding: 3px 4px; width: 100%;
}
.o_list_table td input:hover { border-color: var(--o-border); }
.o_list_table td input:focus { outline: none; border-color: var(--o-brand); background: #fff; }
.o_list_table td input.num { text-align: right; }
.o_list_empty { padding: 24px; text-align: center; color: var(--o-muted); }

/* ---------- Badges, ribbons, pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  border-radius: 10px; padding: 2px 9px; font-size: 11px; font-weight: 600;
  background: #e5e7eb; color: var(--o-text); white-space: nowrap; vertical-align: middle;
}
.badge-success { background: var(--o-success-bg); color: var(--o-success-text); }
.badge-warning { background: var(--o-warning-bg); color: var(--o-warning-text); }
.badge-danger { background: var(--o-danger-bg); color: var(--o-danger-text); }
.badge-info { background: var(--o-info-bg); color: var(--o-info-text); }
.badge-brand { background: #ece2e9; color: var(--o-brand-dark); }
.badge-motherhood { background: var(--o-motherhood-bg); color: var(--o-motherhood-text); }

.o_ribbon {
  position: absolute; top: 14px; right: -32px; transform: rotate(45deg);
  padding: 3px 40px; font-size: 12px; font-weight: 600; letter-spacing: .4px;
  color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25); z-index: 5; pointer-events: none;
}
.o_ribbon.success { background: var(--o-success); }
.o_ribbon.danger { background: var(--o-danger); }
.o_ribbon.warning { background: #ffc107; color: #3d3417; }
.o_ribbon.info { background: var(--o-info); }

/* ---------- Alerts / banners ---------- */
.alert {
  border: 1px solid transparent; border-radius: var(--o-radius);
  padding: 9px 14px; margin: 0 0 10px; display: flex; align-items: flex-start;
  gap: 8px; flex-wrap: wrap;
}
.alert > .grow { flex: 1; min-width: 200px; }
.alert-warning { background: var(--o-warning-bg); border-color: var(--o-warning-border); color: var(--o-warning-text); }
.alert-danger { background: var(--o-danger-bg); border-color: var(--o-danger-border); color: var(--o-danger-text); }
.alert-success { background: var(--o-success-bg); border-color: var(--o-success-border); color: var(--o-success-text); }
.alert-info { background: var(--o-info-bg); border-color: #bee5eb; color: var(--o-info-text); }
.alert-motherhood { background: var(--o-motherhood-bg); border-color: var(--o-motherhood-border); color: var(--o-motherhood-text); }
.alert.prominent { font-size: 15px; font-weight: 600; border-width: 2px; }
.alert.center { justify-content: center; text-align: center; }

.o_savings_line { font-weight: 600; }
.o_savings_line.path { color: #157347; }
.o_savings_line.motherhood { color: var(--o-motherhood-text); }
.o_freeship_hint { font-size: 12px; font-weight: 600; }
.o_freeship_hint.ok { color: #157347; }
.o_freeship_hint.need { color: #0d6efd; }
.o_freeship_hint.none { color: var(--o-muted); font-weight: 400; }

/* availability dot */
.o_avail {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  cursor: pointer; vertical-align: middle;
}
.o_avail.ok { background: var(--o-success); }
.o_avail.bad { background: var(--o-danger); }
.o_avail.warn { background: #ffc107; }

/* ---------- Modals ---------- */
.o_dialog_backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 6vh 16px 16px; z-index: 1000; overflow: auto;
}
.o_dialog {
  background: #fff; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.35);
  width: 100%; max-width: 640px; display: flex; flex-direction: column;
  max-height: 86vh;
}
.o_dialog.o_dialog_lg { max-width: 900px; }
.o_dialog.o_dialog_sm { max-width: 440px; }
.o_dialog_header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-bottom: 1px solid var(--o-border-light);
}
.o_dialog_header h4 { margin: 0; font-size: 16px; }
.o_dialog_header .o_close {
  background: none; border: none; font-size: 20px; line-height: 1;
  color: var(--o-muted); cursor: pointer; padding: 2px 6px;
}
.o_dialog_body { padding: 16px 18px; overflow: auto; }
.o_dialog_footer {
  display: flex; gap: 8px; padding: 12px 18px;
  border-top: 1px solid var(--o-border-light);
}
.o_dialog_footer .spacer { flex: 1; }

/* radio/choice lists in wizards */
.o_choice_list { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.o_choice_list label {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--o-border); border-radius: var(--o-radius);
  padding: 9px 12px; cursor: pointer;
}
.o_choice_list label:hover { background: #f7f5f6; }
.o_choice_list label.selected { border-color: var(--o-brand); background: #f4eef2; }
.o_choice_list label.disabled { opacity: .5; cursor: not-allowed; }
.o_choice_list .sub { font-size: 12px; color: var(--o-muted); }

/* ---------- Toasts ---------- */
.o_notification_manager {
  position: fixed; top: 56px; right: 12px; z-index: 2000;
  display: flex; flex-direction: column; gap: 8px; width: 340px; max-width: 92vw;
}
.o_notification {
  background: #fff; border-radius: var(--o-radius);
  border-left: 4px solid var(--o-muted);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  padding: 10px 12px; display: flex; gap: 10px; align-items: flex-start;
  animation: o_toast_in .18s ease-out;
}
@keyframes o_toast_in { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; } }
.o_notification .body { flex: 1; min-width: 0; }
.o_notification .title { font-weight: 600; color: var(--o-text-strong); margin-bottom: 2px; }
.o_notification .msg { white-space: pre-wrap; word-wrap: break-word; }
.o_notification .o_close {
  background: none; border: none; color: var(--o-muted); cursor: pointer;
  font-size: 16px; line-height: 1; padding: 0 2px; flex: none;
}
.o_notification.info { border-left-color: var(--o-info); }
.o_notification.success { border-left-color: var(--o-success); }
.o_notification.warning { border-left-color: #ffc107; background: #fffdf5; }
.o_notification.danger { border-left-color: var(--o-danger); background: #fff6f7; }

/* ---------- Chatter ---------- */
.o_chatter {
  flex: 0 0 340px; max-width: 340px;
  background: var(--o-sheet); border: 1px solid var(--o-border);
  border-radius: var(--o-radius); box-shadow: var(--o-shadow);
  display: flex; flex-direction: column; max-height: calc(100vh - 160px);
  position: sticky; top: 0;
}
.o_chatter_header {
  padding: 10px 14px; border-bottom: 1px solid var(--o-border-light);
  font-weight: 600; color: var(--o-text-strong);
}
.o_chatter_messages { overflow: auto; padding: 8px 0; flex: 1; }
.o_message { padding: 8px 14px; border-bottom: 1px solid #f1f2f4; }
.o_message .meta { font-size: 11px; color: var(--o-muted); margin-bottom: 2px; display: flex; gap: 6px; }
.o_message .meta .author { font-weight: 600; color: var(--o-text); }
.o_message .body { font-size: 12.5px; word-wrap: break-word; }
.o_message .body p { margin: 0 0 4px; }
.o_message.note { background: #fdf9ef; }
.o_chatter_empty { padding: 18px; color: var(--o-muted); text-align: center; }

/* ---------- Login ---------- */
.o_login_wrap {
  min-height: calc(100vh - 46px); display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.o_login_card {
  background: #fff; border: 1px solid var(--o-border); border-radius: 8px;
  box-shadow: var(--o-shadow); width: 380px; max-width: 96vw; padding: 28px;
}
.o_login_card h2 { text-align: center; }
.o_operator_grid { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; max-height: 46vh; overflow: auto; }
.o_operator_grid button {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--o-border); border-radius: var(--o-radius);
  background: #fff; padding: 10px 14px; cursor: pointer; font-size: 14px;
}
.o_operator_grid button:hover { border-color: var(--o-brand); background: #f6f2f5; }
.o_operator_grid .role { font-size: 11px; color: var(--o-muted); }
.o_pin_display {
  display: flex; justify-content: center; gap: 10px; margin: 16px 0; height: 22px;
}
.o_pin_display .dot {
  width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--o-border);
  align-self: center;
}
.o_pin_display .dot.on { background: var(--o-brand); border-color: var(--o-brand); }
.o_pin_pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.o_pin_pad button {
  height: 52px; font-size: 20px; border: 1px solid var(--o-border);
  border-radius: 6px; background: #fff; cursor: pointer;
}
.o_pin_pad button:hover { background: #f3f0f2; }
.o_pin_pad button:active { background: #e6dfe4; }

/* ---------- Home / dashboard ---------- */
.o_home_wrap { max-width: 1200px; margin: 0 auto; padding: 24px 16px 64px; }
.o_home_search {
  display: flex; gap: 10px; align-items: center; margin-bottom: 18px;
}
.o_home_search input {
  flex: 1; font-size: 17px; padding: 12px 16px;
  border: 1px solid var(--o-border); border-radius: 6px; background: #fff;
  box-shadow: var(--o-shadow);
}
.o_home_search input:focus { outline: 2px solid rgba(113,75,103,.35); border-color: var(--o-brand); }
.o_home_cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 900px) { .o_home_cols { grid-template-columns: 1fr; } .o_chatter { display:none; } }
.o_home_col_title { font-size: 12px; font-weight: 600; color: var(--o-muted);
  text-transform: uppercase; letter-spacing: .5px; margin: 0 0 6px 2px; }

/* ---------- misc ---------- */
.text-muted { color: var(--o-muted); }
.text-strong { color: var(--o-text-strong); font-weight: 600; }
.mono { font-variant-numeric: tabular-nums; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mb8 { margin-bottom: 8px; }
.flex { display: flex; gap: 8px; align-items: center; } .grow { flex: 1; }
.right { text-align: right; }
.o_section_title {
  font-size: 12px; font-weight: 600; color: var(--o-muted); text-transform: uppercase;
  letter-spacing: .5px; border-bottom: 1px solid var(--o-border-light);
  padding-bottom: 4px; margin: 18px 0 8px;
}
.o_totals { margin-left: auto; width: 300px; }
.o_totals .row { display: flex; justify-content: space-between; padding: 3px 0; }
.o_totals .row.total { border-top: 1px solid var(--o-border); font-weight: 700;
  font-size: 15px; color: var(--o-text-strong); margin-top: 4px; padding-top: 6px; }
.o_kbd {
  border: 1px solid var(--o-border); border-bottom-width: 2px; border-radius: 3px;
  background: #f3f4f6; padding: 0 5px; font-size: 11px; font-family: inherit;
}
.o_autocomplete { position: relative; }
.o_autocomplete_menu {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 300;
  background: #fff; border: 1px solid var(--o-border); border-radius: var(--o-radius);
  box-shadow: 0 6px 20px rgba(0,0,0,.18); max-height: 320px; overflow: auto;
}
.o_autocomplete_menu .item {
  padding: 7px 10px; cursor: pointer; display: flex; gap: 8px; align-items: center;
  border-bottom: 1px solid #f4f5f7;
}
.o_autocomplete_menu .item:hover, .o_autocomplete_menu .item.active { background: #f1eef0; }
.o_autocomplete_menu .item .grow { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.o_autocomplete_menu .empty { padding: 10px; color: var(--o-muted); }

.o_qty_popover {
  position: absolute; z-index: 400; background: #fff; border: 1px solid var(--o-border);
  border-radius: 6px; box-shadow: 0 8px 26px rgba(0,0,0,.25); width: 320px;
  padding: 12px 14px;
}
.o_qty_popover h5 { margin: 0 0 8px; font-size: 13px; }
.o_qty_popover .row { display: flex; justify-content: space-between; padding: 2px 0; font-size: 12.5px; }
.o_qty_popover .oos { color: var(--o-danger-text); background: var(--o-danger-bg);
  border-radius: 3px; padding: 6px 8px; margin-top: 8px; font-size: 12px; }

.o_ctx_menu {
  position: fixed; z-index: 1500; background: #fff; border: 1px solid var(--o-border);
  border-radius: var(--o-radius); box-shadow: 0 6px 20px rgba(0,0,0,.2);
  min-width: 180px; padding: 4px 0;
}
.o_ctx_menu button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 7px 14px; cursor: pointer; font-size: 13px;
}
.o_ctx_menu button:hover { background: #f1eef0; }
.o_ctx_menu button.danger { color: var(--o-danger); }

@media print { .o_navbar, .o_control_panel, .o_chatter { display: none; } }
