.trix-content img { max-width: 100%; height: auto; }
.trix-content a { color: #047857; text-decoration: underline; }
.trix-content h1, .trix-content h2, .trix-content h3 { margin-top: 1rem; }
.trix-content  { font-size: 1.1em;
  color: #474747;
  line-height: 1.7em;
  font-family: Inter;
  font-weight: 300;}
  .trix-content strong { font-weight: 600; }


/* Styling for action text attachment images */
.action-text-attachment-image {
  display: inline-block;
  border-radius: 10px;
  box-shadow: 2px 1px 1px rgba(0, 0, 0, 0.1);
}

/* Minimal scaffold styles for CRUD pages */

:root {
  --max-w: 900px;
  --gap: 1rem;
  --border: #e6e6e6;
  --muted: #666;
  --bg: #fafafa;
  --primary: #222;
}

body {
  background: #fff;
}

main {
  padding: 0rem 1rem;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p.notice {
  color: green;
}

/* Lists / tables */
#foods, .list {
  display: grid;
  gap: var(--gap);
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

/* Links and buttons */
.btn, input[type="submit"], .button_to input[type="submit"], a.button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--primary);
  cursor: pointer;
}

.btn.secondary, a.button.secondary {
  background: #fff;
  color: var(--primary);
}

/* Forms */
form {
  display: grid;
  gap: 1rem;
  max-width: 700px;
}

form > div {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--muted);
  font-size: 0.95rem;
}

input[type="text"], textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

/* Utility */
.muted {
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
} 
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
