/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

/* ----- GLOBAL STYLES ----- */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 20px;
    color: #333;
}

/* ----- RECIPE CARD ----- */
.recipe-card {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    text-align: center;
}

/* ----- RECOMMENDED BY ----- */
.recommended {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

    .recommended span {
        color: #0077cc;
        font-weight: bold;
    }

/* ----- IMAGE ----- */
.recipe-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ----- SECTION HEADINGS ----- */
.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #222;
}

/* ----- TEXT CONTENT ----- */
.description,
.ingredients,
.recipe {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    margin-top: 5px;
}

    /* Make list items look nice */
    .ingredients ul,
    .recipe ul {
        padding-left: 20px;
    }

