body {
      font-family: "Helvetica Neue", Arial, sans-serif;
      background: #fafafa;
      margin: 0;
      padding: 0;
      color: #333;
    }
    header {
      background: #ff4d4d;
      color: white;
      padding: 1rem;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 1.8rem;
    }
	.about {
      background: white;
      padding: 1rem;
      border-bottom: 1px solid #eee;
    }
    .filters {
      background: white;
      padding: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      border-bottom: 1px solid #eee;
    }
    select, button, input {
      padding: 10px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
    }
    button {
      background: #ff4d4d;
      color: white;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease-in-out;
    }
    button:hover {
      background: #e63939;
    }
	.instructions {
      padding: 1rem;
    }
    .results, .history {
      padding: 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
    }
    .card {
      background: white;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card h2 {
      margin: 0 0 0.5rem;
      font-size: 1.2rem;
    }
    .card .dish {
      font-size: 1rem;
      color: #444;
      margin-bottom: 0.5rem;
    }
    .card .info {
      font-size: 0.9rem;
      color: #777;
    }
    .history-section {
      background: #fff8f8;
      padding: 1rem;
      border-top: 2px solid #ffcccc;
    }
    .history-section h3 {
      margin-top: 0;
      text-align: center;
    }