/*====  MODHILFE ====*/

* {
    box-sizing: border-box;
}

body{
    background-color: #111111;
    color: #fff;
    margin: 0;
    padding: 0;
}

.containerInhalt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
}

.flex1 {
    margin: 10px;
    padding: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    margin: auto;
    text-align: center;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #111111;
    font-weight: bold;
    text-transform: uppercase;
  }

  tr:nth-child(even) {
    background-color: #5A1EB3;
  }
  
  tr:hover {
    cursor: pointer;
    background-color: #9146FF;
  }

  pre {
    font-size: 14px;
    background-color: #111111;
    box-shadow: 2px 2px 4px 2px #000000;
  }

  .highlight {
    background-color: rgba(255, 255, 0, 0.185);
}

.highlight1 {
    background-color: rgba(0, 255, 213, 0.185);
}