/**
 * UreTech Odoo ERP Demo Widget
 * Minimal CSS — most styling is inline React
 */

.uretech-odoo-demo-root {
    position: relative;
    width: 100%;
    line-height: 1.4;
}

.uretech-odoo-demo-root *,
.uretech-odoo-demo-root *::before,
.uretech-odoo-demo-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.uretech-odoo-demo-root ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.uretech-odoo-demo-root ::-webkit-scrollbar-track {
    background: #F1F0F5;
}

.uretech-odoo-demo-root ::-webkit-scrollbar-thumb {
    background: rgba(113, 75, 103, 0.18);
    border-radius: 3px;
}

.uretech-odoo-demo-root input::placeholder {
    color: #ADB5BD;
}

/* Elementor editor placeholder */
.elementor-editor-active .uretech-odoo-demo-root {
    min-height: 400px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .ure-odoo-demo { padding: 32px 24px; }
  .ure-odoo-demo__sidebar { min-width: 180px; }
}
@media (max-width: 768px) and (min-width: 641px) {
  .ure-odoo-demo { padding: 24px 16px; }
  .ure-odoo-demo__sidebar { display: none; }
}
@media (max-width: 640px) {
  .ure-odoo-demo { padding: 16px 12px; font-size: 13px; }
  .ure-odoo-demo__header { flex-direction: column; gap: 12px; }
}

@media (max-width: 768px) {
    .uretech-odoo-demo-root {
        font-size: 13px;
    }
}

