body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    padding: 30px;
    color: #333;
}

h1 {
    color: #2c3e50;
    font-size: 30px;
    margin-bottom: 30px;
}

    .receta {
        display: flex;
        align-items: flex-start;
        background: #fff;
        border-radius: 8px;
        margin-bottom: 25px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .receta img {
        width: 100px;
        height: auto;
        border-radius: 4px;
        margin-right: 20px;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .receta-info {
        flex: 1;
    }

h2 {
    margin-top: 0;
    color: #34495e;
}

a.ver-mas {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
}

a.ver-mas:hover {
    color: #2980b9;
}
    .receta p {
        margin: 4px 0;
    }
