/* Polices et styles de base */
body {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

div.recipe, div.index {
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  margin-left: 7%;
  margin-right: 10%;
  padding: 1em;
  margin-top: 1em;
}

/* Images */
div.recipe img {
  float: right;
  padding: 1em;
  max-width: 40%;
  height: auto;
}

img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* En-tête */
div.header {
  margin-top: 1em;
  margin-bottom: 1em;
}

div.header p {
  margin-top: 0;
  margin-bottom: 0.2em;
}

/* Titre */
p.title {
  font-size: 120%;
  text-align: center;
}

p.title span.label {
  display: none;
}

/* Ingrédients */
div.ing {
  padding: 1em;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  margin: 1em 0;
}

ul.ing {
  padding-left: 1em;
}

li.ing {
  list-style: none;
  border-top: 0.3em solid #eee;
  padding-top: 0.5em;
}

span.label {
  font-weight: bold;
  min-width: 10em;
  display: inline-block;
  text-align: right;
}

/* Mise en valeur des quantités et unités avec espace */
div.ingamount {
  display: inline-block;
  min-width: 3em;
  text-align: right;
  font-weight: bold;
  color: #2980b9; /* Bleu pour les quantités */
  margin-right: 0.5em; /* Espace après la quantité */
}

div.ingunit {
  display: inline-block;
  min-width: 3em;
  text-align: left; /* Alignement à gauche pour coller à la quantité */
  font-weight: bold;
  color: #d35400; /* Orange pour les unités */
  margin-right: 0.5em; /* Espace après l'unité */
}

/* Titres */
h2 {
  text-align: center;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  div.recipe, div.index {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 10pt;
  }
  div.recipe img {
    float: none;
    max-width: 100%;
  }
}
.header-button {
    margin: 1em auto;
    text-align: center;
}

.btn-home {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #d35400; /* Orange */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-home:hover {
    background-color: #e67e22; /* Orange plus clair */
}

