body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #444;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input, textarea, button {
  margin: 8px 0;
  padding: 10px;
  font-size: 16px;
}

button {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

button:hover {
  background: #218838;
}

#searchBox {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
}

.recipe-card {
  background: #f1f1f1;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  position: relative;
}

.recipe-card h3 {
  margin: 0 0 10px;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: crimson;
  color: white;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 4px;
}

.delete-btn:hover {
  background: darkred;
}
