/* Add a CSS reset to normalize browser styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Update the font and background colors */
  html {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f4f4;
  }
  
  body {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 1rem;
  }
  
  /* Use a modern font for headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
  }
  
  /* Update link styles */
  a {
    color: #377ba8;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #235c80;
  }
  
  /* Update navigation styles */
  nav {
    background: #235c80;
    display: flex;
    align-items: center;
    padding: 1rem;
  }
  
  nav h1 {
    flex: auto;
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin-left: 1rem;
  }
  
  nav ul li a {
    color: #fff;
  }
  
  /* Update content styles */
  .content {
    padding: 1rem;
  }
  
  .flash {
    margin: 1em 0;
    padding: 1em;
    background: #cae6f6;
    border: 1px solid #377ba8;
    border-radius: 4px;
  }
  
  /* Update form styles */
  .content form {
    margin: 1em 0;
    display: grid;
    gap: 1rem;
  }
  
  .content label {
    font-weight: bold;
  }
  
  .content input,
  .content textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .content textarea {
    min-height: 12em;
    resize: vertical;
  }
  
  input.danger {
    color: #cc2f2e;
  }
  
  input[type="submit"] {
    align-self: start;
    min-width: 10em;
    padding: 0.5rem 1rem;
    background-color: #377ba8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  input[type="submit"]:hover {
    background-color: #235c80;
  }
  
  /* Update table styles */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th,
  td {
    padding: 0.5rem;
    border: 1px solid #ccc;
  }
  
  th {
    font-weight: bold;
    background-color: #f2f2f2;
  }
  
  /* Add a subtle shadow to elements */
  .content,
  .post {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  #recipes input[type="checkbox"] {
    margin-right: 5px;
  }