.terminHeader {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}


.termin {
    display: flex;
    justify-content: center;
    font-size: 40px;
    margin-top: 20px;
}

.terminStr {
    width: 50%;
    text-align: center;
}

button#ButtonUpdate, button#ButtonClear {
    font-size: 70px;
    border: none;
    border-radius: 6px;
    width: 300px;
    height: 200px;
    text-align: center;
}

button#ButtonUpdate{
    background-color: #2C8000;
    color: white;
}


button#ButtonClear{
    background-color: #B70F18 ;
}


ul.modulesList {
    list-style-type: none;
}

.modules {
    text-align: center;
    font-size: x-large;
}

.stats {
    text-align: center;
    font-size: larger;
    line-height: 30px;
}

.drink {
    text-align: center;
    font-size: xx-large;
    color: black;
}

.drinktxt {
    height: 100px;
    font-size: inherit;
    background-color: lightgrey;
}

input[type="password"], input[type="text"] {
    height: 40px;
    width: 300px;
    font-size: 40px;
}

button#ButtonUpdate {
    background-color: green;
}

h2 {
    text-align: center;
    font-size: 30px;
}

.ulist {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.alleTermine {
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
    color: #C21415;
    font-weight:bold;
}

a:link, a:visited, a:active {
    text-decoration: none;
    color: #C21415;
}

a:hover {
    text-decoration: underline;
}

/*aktuelle Bestellung (Liste unten)*/

.aktBestellung {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
}

.info {
    text-align: center;
    margin-bottom: 20px;
}

.col1 {
    width: 200px
}

.col2 {
    width: 110px;
}

.RowU {
    background-color: #F9BFBF;
}

.RowU, .RowG {
    font-size: 40px;
}

.tabledrinks {
    margin-left: auto;
    margin-right: auto;
}

.aktuell {
    font-size: 24px;
}

.news {
    text-align: center;
}

.Update {
    text-align: center;
    width: 100%;
    background-color: #F9BFBF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.UpdatesTable {
    text-align: left;
    /* margin-left: 40%; */
    background-color: #F3BFC0;
    margin: 0 auto;
}

.empty {
    height: 15px;
}

.row1{
    width: 100px;
    font-weight: bold;
}

.logoCol{
    width: 20%;
}

.textCol{
    width: 60%;
    text-align: center;
}

.menuCol {
    width: 20%;
    text-align: right;
    padding-right: 4%;
}

.dropbtn {
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    border: none;
}

.dropbtn:hover {
    /* background-color: #B70F18; */
    background-color: rgba(0, 0, 0, 0) !important;
    border: none !important;
}


.headerTable {
    width: 100%;
    background-color: #B70F18;
    color: white;
}

ul {
    font-size: 35px;
}

/* Style the tab */
.tab {
    overflow: hidden;
    /*border: 1px solid #ccc; */
    background-color: white;
    display: flex;
    justify-content: center; /* Zentriert die Tabs horizontal */

}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    background-color: #F3BFC0;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: white;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    /* border: 1px solid #ccc; */
    border-top: none;
    animation: fadeEffect 1s;
    background-color: white;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/*#region MENU Dropdown */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: fixed;
    left: 85%;
    background-color: #FFFFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #F8BEC0;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #FFFFFF;}

/*#endregion*/