
    /* 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 {
      background: #e9e9e9;
      padding: 6px 12px;
      border: 1px solid #ccc;
      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;
    }
    
    .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: #e9e9e9;
      padding: 6px 12px;
      border: 1px solid #ccc;
      border-top: none;
  }
    
    .res_add_inputs, .res_add_select {
        /* flex-grow: 1; */
        margin: 5px 25px;
    }
    
    .res_add_inputs {
        text-align: right;
    }    
  .reservations_index {
    background: rgba(230, 224, 210, 0.55);;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 20px;
    line-height: 1.8;
}

.reservations_index_title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b8477;
    margin-bottom: 12px;
    font-weight: 700;
}

.reservations_index_content {
    color: #3e4038;
    font-size: 13px;
}

.reservations_index_content a {
    color: #5f685c;
    text-decoration: none;
    font-weight: 600;
}

.reservations_index_content a:hover {
    color: #394336;
}

.reservations_index_links {
    margin-top: 14px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.reservations_index_links a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8b8477;
    text-decoration: none;
    transition: 0.2s ease;
}

.reservations_index_links a:hover {
    color: #394336;
}
    