:root {
    --primary: #919448;
    --light: #f5f5f5;
    --dark: #333;
    --radius: 0.75rem;
  }
  * {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
  }
  body {
    background: var(--light);
    color: var(--dark);
    padding: 1rem;
  }
  h1,
  h2 {
    color: var(--primary);
    margin: 0 0 1rem;
  }
  .step {
    display: none;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
  }
  .active {
    display: block;
  }
  label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  input,
  select,
  textarea {
    padding: 0.45rem 0.6rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 1rem;
  }
  select {
    min-width: 120px;
  }
  textarea {
    resize: vertical;
  }
  button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    cursor: pointer;
  }
  button:hover {
    background: #6f7039;
  }
  .icon-btn {
    padding: 0.35rem 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid #ffffff33;
    background: var(--primary);
    white-space: nowrap;
  }
  .icon-btn i {
    pointer-events: none;
  }
  .deleteRow,
  .deleteExtra {
    background: #c62828;
  }
  .deleteRow:hover,
  .deleteExtra:hover {
    background: #a91d1d;
  }
  #mealsContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .meal-card {
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem;
    background: #fff;
  }
  .meal-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
  }
  .meal-header input[type="time"] {
    width: 130px;
  }
  .meal-header input.meal-name {
    flex: 1;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  th,
  td {
    border: 1px solid #ccc;
    padding: 0.3rem 0.4rem;
    text-align: left;
    vertical-align: middle;
  }
  tr.subst td {
    padding-left: 2rem;
    font-style: italic;
    background: #fafafa;
  }
  .actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
  }
  #observations,
  .meal-notes {
    width: 100%;
    min-width: 400px;
    min-height: 300px;
  }
  #copyToast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #2e7d32;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    opacity: 0;
    transition: 0.3s;
  }
  #copyToast.show {
    opacity: 1;
  }
  .textarea-label {
    margin-bottom: 1rem;
  }
  .actions-cell {
    white-space: nowrap;
    text-align: center;
  }
  .actions-cell .icon-btn {
    margin-right: 0.3rem;
  }
  .extras-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
  }
  .supList,
  .menuList,
  .formList {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0;
  }
  .supList li,
  .menuList li,
  .formList li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .extra-input,
  .extra-textarea {
    flex: 1;
  }
  .extra-textarea {
    resize: vertical;
    min-height: 80px;
  }
  