
    /* Style the tab */
    .res_tab {
      overflow: hidden;
      border: 1px solid #b3b3b3;
      background-color: #fafafa;
    }
    
    .res_bit form {
      display: inline;
    }
    
    /* Style the buttons that are used to open the tab content */
    .res_tab button {
      background-color: #fafafa;
      background-image: none;
      border-radius: 0;
      float: left;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 5px 10px;
      transition: 0.3s;
      font-size: 1.1em;
      font-weight: bold;
    }
    
    /* Change background color of buttons on hover */
    .res_tab button:hover {
      background-color: #ddd;
    }
    
    /* Create an active/current tablink class */
    .res_tab button.active {
      /* background-color: #dadbda; */
      border-bottom: 3px solid #3b3b3b;
      /* font-weight: 600; */
    }
    
    /* Style the tab content */
    .res_tabcontent {
		width: 48%;
      border-top: none;
      animation: fadeEffect 1s; /* Fading effect takes 1 second */
    }
    
    /* Go from zero to full opacity */
    @keyframes fadeEffect {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    
    .res_ausgabe {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    color: var(--nv-txt);
    font-family: var(--nv-main);
    font-size: var(--nv-txt-size);
	border-bottom: 2px dashed var(--nv-y);
		padding-bottom: 10px;
	align-items: flex-start;
    overflow: auto;	
    }
    
    .res_ausgabe h1 {
        flex-basis: 100%;
        text-align: center;
    }
    
    .res_ausgabe .res_bit {
        flex-grow: 1;
		text-align:left;
		margin-bottom: 5px;
    }
    .res_add {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    }

.resaddstuffwrap{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    color: var(--nv-txt);
    font-size: var(--nv-txt-size);
    font-family: var(--nv-main);
    margin-top: 20px;
    justify-content: flex-start;
}

    .res_add h2 {
      flex-basis: 100%;
      text-align:center;
    }
    
    .res_add_save {
        flex-basis: 100%;
        text-align: center;
    }
    .res_mod {
      border-top: none;
		font-family: var(--nv-main);
		color: var(--nv-txt);
		font-size: var(--nv-txt-size);
		text-align: justify;
  }
    
    .res_add_inputs, .res_add_select {
        flex-grow: 1;
		text-align: left;
    	margin-right: 40px;
    }
    
    .res_add_inputs {
        text-align: right;
    }    
  
    