/* MyBoardBuilder — Public Builder Styles */

/* Ensure the builder fills its container properly */
.mbb-builder-root {
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

/* Validation notice bar */
.mbb-notice {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px 20px;
  font-size: 13px;
  font-family: sans-serif;
  text-align: center;
}
.mbb-notice-warning {
  background: #fff3cd;
  border-bottom: 2px solid #ffc107;
  color: #856404;
}
.mbb-notice-error {
  background: #f8d7da;
  border-bottom: 2px solid #dc3545;
  color: #721c24;
}

/* Hide WordPress theme padding that would break fullscreen feel */
.mbb-builder-root * { box-sizing: border-box; }

/* Override common theme resets that break the builder */
.mbb-builder-root input,
.mbb-builder-root select,
.mbb-builder-root textarea,
.mbb-builder-root button {
  font-family: inherit;
}
