    /* Style the tab */
    .res_tab {
      overflow: hidden;
      border-bottom: 2px solid var(--accent);
		display: flex;
		justify-content: space-evenly;
		height: var(--frame);
		box-sizing:border-box;
    }
    
    .res_bit form {
      display: inline;
    }
    
    /* Style the buttons that are used to open the tab content */
    .res_tab button {
      background-color: transparent;
      background-image: none;
      border-radius: 0;
      cursor: pointer;
      transition: 0.3s;
	  max-height: var(--frame) !important;
    }
    
    /* 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 {
      background: transparent;
      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;
		gap:10px;
    }
    
    .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: space-evenly;
		gap: 30px;
    }
    .res_add h2 {
      flex-basis: 100%;
      text-align:center;
    }
    
    .res_add_save {
        flex-basis: 100%;
        text-align: center;
    }
    .res_mod {
      background: transparent;
		color: var(--text);
		text-align: justify;
      border-top: 2px solid var(--accent);
  }
    
    .res_add_inputs {
        width: 60%;
		display: flex;
		flex-direction: column;
		justify-content: end;
		color: var(--text);
    }

.res_add_select {
        /* flex-grow: 1; */
	color: var(--text);
	text-align:left;
    }
    
    