/* === Base Theme (Default) === */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Segoe UI Emoji', 'Segoe UI Symbol',
               'Apple Color Emoji', 'Noto Color Emoji',
               sans-serif;
  color: #111827;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* important for emoji inside buttons/inputs */
button, input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4 {
  color: #111827;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover {
  background-color: #1d4ed8;
}

/* Cards */
.card-soft {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

/* Mobile sticky save */
@media (max-width: 768px) {
  .form-actions {
    position: sticky;
    bottom: 0;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 10px;
    z-index: 20;
  }
  .btn-primary {
    width: 100%;
  }
}

/* === Injected from Engine Admin === */

