/* Globale Stile für die Rezeptseite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(22, 167, 119);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .container {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #858585;
    flex: 1;
  }
  
  /* Stile für das linke Bild */
  .recipe-image {
    flex: 1;
    position: relative;
  }
  
  .recipe-image img {
    max-width: 100%;
    width: 800px;
    height: 400px;
    max-width: 100%;
    display: block;
  }
  
  .recipe-image .image-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
  }
  
  .recipe-title {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .recipe-time {
    font-size: 16px;
    color: #005021;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .recipe-keywords {
    font-size: 14px;
    color: #075500;
    margin-bottom: 0;
  }
  
  /* Stile für den rechten Inhalt */
  .recipe-details {
    color: #000000;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(113, 192, 127);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: 20px; /* Hinzugefügt */
  }
  
  .recipe-ingredients {
    margin-bottom: 20px;
  }
  
  .recipe-instructions {
    margin-bottom: 20px;
  }
  
  .recipe-tips {
    margin-bottom: 20px;
  }
  
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    background-color: rgb(22, 167, 119);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .anmerkung{
    padding-top: 50px;
  }
  
  /* Medienabfragen für die Anpassung an verschiedene Bildschirmgrößen */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .recipe-image,
    .recipe-details {
      flex: 1;
      margin-left: 0; /* Zurücksetzen des Abstands */
    }
  }
  