    /* Style the tab */
    .res_tab {
      overflow: hidden;
      border: 1px solid var(--hintergrund2);
      background-color: var(--hintergrund2);
    }
    
    .res_bit form {
      display: inline;
    }
    
    /* Style the buttons that are used to open the tab content */
    .res_tab button {
       background-color: var(--akzent1);
       color:var(--font-color);
       float: left;
       padding: 5px 10px;
       font-size: 1.1em;
       font-weight: bold;
       width: 33%;
    }
    
    /* Change background color of buttons on hover */
    .res_tab button:hover {
   background-color: var(--akzent2);
		color:var(--font-color);
    }
    
    /* Create an active/current tablink class */
    .res_tab button.active {
   background-color: var(--akzent2);
		color:var(--font-color);
    }
    
    /* Style the tab content */
    .res_tabcontent {
      background: var(--hintergrund2);
      padding: 5px 10px;
      border: 1px solid var(--hintergrund2);
      border-top: none;
    }
    
    /* Go from zero to full opacity */
    @keyframes fadeEffect {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    
    .res_ausgabe {
        display: flex;
        flex-wrap: wrap;
    }
    
    .res_ausgabe h1 {
        flex-basis: 100%;
        text-align: center;
    }
    
    .res_ausgabe .res_bit { flex-grow: 1;    }
    .res_add {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .res_add h2 {
      flex-basis: 100%;
      text-align:center;
    }
    
    .res_add_save {
        flex-basis: 100%;
        text-align: center;
    }
    .res_mod {
      background: var(--hintergrund2);
      padding: 5px 10px;
      border: 1px solid var(--hintergrund2);
      border-top: none;
  }
    
    .res_add_inputs, .res_add_select {
        /* flex-grow: 1; */
        margin: 5px 25px;
    }
    
    .res_add_inputs { text-align: right;    }

 .res_add_inputs input{
     background-color:var(--hintergrund1);
     border:1px solid var(--hintergrund1);
     color:var(--font-color);
 }