    body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #faedcd;
    color: #333;
    padding: 20px;
    max-width: 700px;
    margin: auto;
}
h1 {
    text-align: center;
    color: #7f5539;
}
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.recipe-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-decoration: none;
    color: #7f5539;
    overflow: hidden;
    transition: transform 0.2s ease, bos shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}
.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.recipe-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.recipe-card h2 {
    margin: 0;
    font-size: 1.2 rem;
}
ul, ol {
    line-height: 1.6;
    padding-left: 20px;
}
.notes {
    background-color: #fff3cd;
    padding: 10px;
    border-left: 5px solid #ffc107;
    margin-top: 20px;
}
.recipe-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}
.recipe-page {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 30px;
}
.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 1 rem;
    background-color: #f2d0c1;
    color: #5c3d2e;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
.back-button :hover {
    background-color: #e6b8a2;
}