/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background-color: #ffffff;
    padding: 20px 20px;
    font-size: 25px;
    color: rgb(4,25,42);
    display: flex;
    align-items: center

  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header a.logo {
    font-size: 25px;
    font-weight: bold;
  }
  .logout {
    margin-left: auto;
  }
  .error{
    color: white;}
  body{
  
    background: rgb(4,25,42);
    background: linear-gradient(90deg, rgba(4,25,42,1) 0%, rgba(2,43,73,1) 50%,  rgba(4,25,42,1) 100%);
    font-family: 'Open Sans', sans-serif;
  }
  .search {
    width: 300px;
    position: relative;
    margin:auto;
    margin-top:40px;
    margin-left: 150px;
    display: flex; /* <- wichtig */
    align-items: center; /* vertikale Zentrierung */
    gap: 15px; /* optionaler Abstand zwischen Input und Bild */
  }
  
  .searchTerm {
    width: 100%;
    border: 3px solid #e99e03;
    padding: 5px;
    height: 35px;
    border-radius: 5px 5px 5px 5px;
    outline: none;
    color: #9DBFAF;
  }
  
  .searchTerm:focus{
    color: #000000;
  }
  
  .searchButton {
    width: 40px;
    height: 35px;
    border: 1px solid #e99e03;
    background: #e99e03;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
  }
  
  /*Resize the wrap to see the search bar change!*/
  .wrap{
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: center;
}

h2 {
  font-size: 26px;
  color: rgb(4,25,42);
  }
 
.responsive-table {
  li {
    border-radius: 5px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    min-width: 500px;
    max-width: 700px;
    margin-left: -100px;
  }
  .table-header {
    background-color: #e99e03;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
  .col-1 {
    flex-basis: 50%;
  }
  .col-2 {
    flex-basis: 50%;
  }
 
  
  @media all and (max-width: 767px) {
    .table-header {
      display: none;
    }
    .table-row{
      
    }
    li {
        display: flex;
        justify-content: center;  /* Zentriert horizontal */
        align-items: center;      /* Zentriert vertikal */
        text-align: center;       /* Zentriert den Text */
    }
  
    .col {
      
      flex-basis: 100%;
      
    }
    .col {
      display: flex;
      padding: 10px 0;
      &:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 80%;
        text-align: right;
      }
    }
  }
}
  
