/* PoultryHub — in-browser content editor */
#__cms_toolbar{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99999;
  display:flex;
  align-items:center;
  gap:8px;
  background:#17251A;
  color:#FAF7EF;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  font-family:system-ui,sans-serif;
  font-size:14px;
}
#__cms_toolbar button{
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  border:none;
  border-radius:8px;
  padding:8px 14px;
  cursor:pointer;
}
#__cms_toggle{ background:#1E7A2C; color:#fff; }
#__cms_toggle.editing{ background:#EFA61B; color:#17251A; }
#__cms_save{ background:#FAF7EF; color:#17251A; }
#__cms_save:disabled{ opacity:.5; cursor:not-allowed; }
#__cms_dashboard{ color:#FAF7EF; opacity:.8; text-decoration:underline; font-weight:500; }
#__cms_dashboard:hover{ opacity:1; }
#__cms_status{ min-width:60px; opacity:.85; }

body.__cms_editing [contenteditable="true"]:hover,
body.__cms_editing.__cms_body_editable:hover{
  outline:2px dashed #EFA61B;
  outline-offset:2px;
  cursor:text;
}
body.__cms_editing{
  outline:3px dashed #1E7A2C;
  outline-offset:-3px;
}
