/* Buttons */
.btn-line-height {
    line-height: 2.5; /* Standardzeilenhöhe */
    height: 2.5em;   /* Höhe auf Zeilenhöhe beschränken */
    padding: 0.375rem 0.75rem; /* Bootstrap-Standard-Padding für Buttons */
    display: flex; /* Flexbox-Layout aktivieren */
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */    
}


.text-orange {
    color: orange;
}

/* ungerade divs für gestreifte Tabelle */
/*div.container>div:nth-of-type(odd) { */
#inner_container>div:nth-of-type(odd) {    
    background: #e0e0e0;
}
  

.fixed-overlay{
    position: fixed;
    width: 100%;
    height:100%;
    display: flex;
    align-items: center;
    top: 0;
}

p{
    margin-bottom:0px;
}

/* für Modal von links
https://codepen.io/bootpen/pen/jbbaRa
*/