/* =======================
   Google Font Einbindung
   ======================= */
   @import url('https://fonts.googleapis.com/css2?family=Bosch+Sans:wght@400;700&display=swap');

   /* =======================
      Grundlegende Body-Stile
      ======================= */
   body {
     font-family: 'Bosch Sans', sans-serif;
     margin: 0;
     padding: 0;
     background-color: white;
     color: black;
     padding-top: 5rem;
   }

   /* =======================
      Header-Bereich
      ======================= */

      .supergrafik-top {
        position: fixed;
        top: -0.5rem;
        left: 0;
        width: 100vw;
        height: 0.5rem;
        z-index: 1100;
      }
      
      .supergrafik-top img {
        width: 100%; 
        height: 100%;
        object-fit: cover;
      }
      
      .header {
        position: fixed;
        top: 0.5rem; 
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between; 
        height: 5rem;
        padding: 0 2rem;
      }
      .Bosch-logo {
        height: 2.5rem;
        width: auto;
      }
      .home {
        margin-top: -0.3rem;
        height: 2.5rem;
        width: auto;
      }
      .questionmark {
        height: 2.5rem;
        width: auto;
        margin-top: -0.3rem;
        margin-right: 0rem;
      }

      .header nav {
        display: flex;
        gap: 1.5rem;
        margin-right: 5rem;
        margin-top: 1rem;
      }

      .header nav a {
        font-family: 'Bosch Sans', sans-serif;
        text-decoration: none;
        font-size: 1.5rem;
        color: rgb(0, 0, 0);
      }
      
      .header nav a:hover {
        text-decoration: underline;
      }
   

/* =====================
      BREADCRUMBS
   =====================  */      
   .breadcrumbs {
    position: absolute; 
    top: 6.5rem; 
    left: 2rem; 
    background: transparent; 
    padding: 10px;
    font-family: 'Bosch Sans', sans-serif;
    font-size: 1.2rem;
    border-radius: 0px;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.breadcrumb {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.breadcrumb:hover {
    color: #007bc0;
    text-decoration: underline;
}

.separator {
    margin: 0 1px;
    color: #666;
}

/* Titel und Instruction */
.title-top {
  text-align: left;
  margin-left: 15%;
  margin-top: 12rem;
  color: #000000;
  font-size: 2rem;
  max-width: 50%;
}

.spacer {
  width: 70%;
  height: 2px;
  background-color: black;
  margin: 0rem auto;
}

.instruction {
  font-size: 1.5em;
  text-align: left;
  margin: 1.5rem 15%;
  line-height: 1.5;
  max-width: 50%;
  margin-bottom: 5rem;
  color: #000000;
}


  /* =======================
    spacer to keep footer down Dont delete
   ======================= */
   .flowchart {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0rem;
    flex-wrap: wrap;
}

.flowchart a {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.flowchart-img {
    width: 10rem;
    height: auto;
    border-radius: 0rem;
    transition: transform 0.3s ease-in-out;
    margin-top: 0rem;
    margin-bottom: 34.3rem;
}

/*================
  Table
===============*/

body {
  font-family: Arial, sans-serif;
  padding: 1.25rem;
  background-color: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}

th, td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  vertical-align: top;
}

th {
  background-color: #d5d5d5;
  color: rgb(0, 0, 0);
  font-size: 1rem;
}

td img {
  max-width: 15rem;
  height: auto;
  display: block;
  margin: 0.625rem auto 0;
}

.cell-content {
  margin-top: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.cell-text {
  font-size: 0.8rem;
  text-align: left;
  margin-left: 2.5rem;
  margin-bottom: 0.625rem;
  max-width: 35rem;
}




/* Footer bleibt unten */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: auto;
}

.o-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.o-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.o-footer__links a {
  color: white;
  text-decoration: none;
}

.o-footer__links a:hover {
  text-decoration: underline;
}

.o-footer__copyright {
  display: flex;
  align-items: center;
  font-size: small;
}

        
        /* Responsive Design */
        @media (max-width: 768px) {
          .o-footer__bottom {
            flex-direction: column;
            text-align: center;
          }
        
          .o-footer__links {
            flex-direction: column;
            gap: 1rem;
          }
        }
        
        .o-footer__top {
          padding-top: 3rem;
          padding-bottom: 1.5rem;
        }
        
        .m-language-selector,
        .o-footer__links,
        .o-footer__share {
          margin-top: 2rem;
        }
        
        .o-footer__bottom {
          font-size: small;
          padding-top: 1.5rem;
          padding-bottom: 2rem;
          position: relative;
        }
        
        .o-footer__back-to-top {
          position: absolute;
          top: -0.25rem;
          right: -0.75rem;
        }
        
        .o-footer__back-to-top .a-icon {
          font-size: 2.25rem;
        }
        
        .o-footer__links li {
          font-size: inherit;
          padding: 0;
          list-style: none;
        }
        
        .o-footer__links li::before {
          content: none;
        }
        
        .o-footer__links a {
          color: var(--integrated__enabled__front__default);
          text-decoration: none;
        }
        
        .o-footer__links a:hover {
          color: var(--integrated__enabled__front__hovered);
        }
        
        .o-footer__links a:active {
          color: var(--integrated__enabled__front__pressed);
        }
        
        /* Tablet-Version */
        @media (min-width: 768px) {
          .o-footer__search {
            align-items: baseline;
            display: flex;
          }
        
          .o-footer__search .m-search-form {
            flex: 1;
            margin-left: 2rem;
          }
        
          .o-footer__search-cta {
            flex: 1;
            margin-bottom: 0;
          }
        
          .o-footer__top {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
          }
        
          .o-footer__claim {
            margin-top: 0.5rem;
            width: 60%;
          }
        
          .o-footer__bottom {
            display: flex;
            flex-wrap: wrap-reverse;
          }
        
          .o-footer__copyright {
            margin-right: 1.5rem;
          }
        
          .m-language-selector {
            order: 2;
            width: 100%;
          }
        
          .o-footer__links {
            order: 3;
          }
        
          .o-footer__top .o-footer__links,
          .o-footer__bottom .o-footer__links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
          }
        
          .o-footer__top .o-footer__links li,
          .o-footer__bottom .o-footer__links li {
            display: inline-block;
            margin-bottom: 0;
          }
        
          .o-footer__top .o-footer__links li:not(:last-child),
          .o-footer__bottom .o-footer__links li:not(:last-child) {
            margin-right: 1.5rem;
          }
        
          .o-footer__bottom .o-footer__links {
            padding-right: 3rem;
          }
        
          .o-footer.-minimal .o-footer__bottom {
            flex-direction: row;
            justify-content: space-between;
            padding: 0.5rem 0;
          }
        }
        
        /* Desktop-Version */
        @media (min-width: 1024px) {
          .o-footer .m-language-selector {
            width: unset;
          }
        
          .o-footer__search-cta {
            font-size: x-large;
          }
        
          .o-footer__top .o-footer__links {
            align-self: start;
            justify-self: end;
            margin-top: 1.9375rem;
          }
        
          .o-footer.-minimal .o-footer__bottom {
            flex-direction: row;
            justify-content: space-between;
            padding: 0.5rem 0;
          }
        }
        