* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; background: #fff5e6; color: #333; padding: 20px; }
.container { max-width: 800px; margin: 0 auto; }
h1 { text-align: center; color: #d35400; margin-bottom: 30px; font-size: 2.5em; }
.form-container { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin-bottom: 30px; display: flex; flex-direction: column; gap: 15px; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Arial', sans-serif; outline: none; }
input:focus, textarea:focus { border-color: #e67e22; }
button { padding: 12px; background: #e67e22; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: bold; }
button:hover { background: #d35400; }
.recipes-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.recipe-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: relative; border-top: 4px solid #e67e22; }
.recipe-title { font-size: 1.5em; color: #d35400; margin-bottom: 10px; }
.recipe-desc { font-family: 'Arial', sans-serif; line-height: 1.5; color: #555; white-space: pre-wrap; margin-bottom: 15px; }
.delete-btn { background: #c0392b; width: auto; font-size: 14px; padding: 8px 12px; position: absolute; bottom: 15px; right: 15px; }
.delete-btn:hover { background: #e74c3c; }
