:root {
    --navbar-height: 16rem; /* Prozentwert für die Höhe der Navbar */
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    color: black;
    height: 100%;
    background-color: white;
}

/* .navbar {
    padding-bottom: var(--navbar-height);
} */

/* header {

} */

/* main {
    overflow: auto;
    display: flex;
} */

body {
    margin: 0;
    padding: 0 20px; /* Hier kannst du den gewünschten Wert für die Ränder angeben */
}

#main {
    position: relative; 
    transition: opacity 0.3s ease-out;
}

.hide-content > * {
    opacity: 0;
    pointer-events: none;
}

/* Nur der Spinner-Overlay innerhalb von #main mit der Klasse .specific-spinner-overlay wird angezeigt */
.hide-content > .specific-spinner-overlay {
    opacity: 1 !important;
}

.dot-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #FFD700;
    animation: pulse 1.2s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.4s;
}

.dot:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}


footer {
    background-color: #f8f9fa;
    padding: 10px 0;
    text-align: center;
}

/* .ampel {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    padding-top: var(--navbar-height);
    /* align-items: center;
    justify-content: center; */
  /* } */

/* .ampel-info {
/* text-align: center; */
/* } */
   
.essenszeiten {
    list-style-type:symbols("✔");
    /* text-align: center; */
  }

.buchen {
    display: flex;
    flex-direction: column;
    padding-top: var(--navbar-height);
    /* align-items: center;
    justify-content: center; */
}

.storno {
    padding-top: var(--navbar-height);
}

h3 {
        background-color: #FFD700;
        width: 45%;
}

@media (max-width: 767px) {
    h3 {
        width: 100%;
        font-size: small;
    }    
}

a:link, a:visited, a:active {
    color: black;
    text-decoration: none;
}

a:hover {
    background-color: #FFD700;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 10px;
}

a.noHover:hover {
    border-radius: inherit;
    background-color: inherit;
    padding-left: 0px;
    padding-right: 0px;
  }

.linkedButton:hover {
    background-color: #FFD700;
}

.header_userdaten {
    color: gray;
    font-weight: bold;
    text-align: right;
}

.modal-header {
    background-color: #FFD700;
}

.modal-body {
    background-color: white;
}

.modal-footer {
    background-color: #FFD700;
}


.hidden {
    visibility: hidden;
}

.flatpickr-calendar.open {
    visibility: visible;
}
/* 
.circle {
    width: 600px;
    height: 600px;
    background-color: red;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-text {
    font-size: 5em;
    font-weight: bold;
    color: #030303;
    white-space: nowrap;
    text-align: center;
} 


  
    .circle-text {
        font-size: 2em;
    }


.circle.green {
    background-color: green;
}
*/

#QR-Code {
    width: 33vw;
    max-width: 200px;
    margin: 5%;
}

.data-input {
    width: auto;
}

.changed-input {
    background-color: #ffcc80;
}

input[type=range] {
    background-color: black;
}

.toggle {
    /* background-color: #FFD700; */
    min-width: 45px;
    min-height: 30px;
}

.toggle:checked {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='green'/%3e%3c/svg%3e") !important; */
    background-color: #FFD700;
}

.form-check, .form-switch {
    /* margin-bottom: 35px; */
    min-height: 70px;
    min-width: 210px;

}

.form-check-label {
    padding-left: 50px;
}

.booking_button {
    background-color: black;
    border-color: #FFD700;
    border-width: 3px;
    border-style: solid;
    color: white;
    border-radius: 12px;
    font-family: sans-serif;
    font-size: medium;
    font-weight: bold;
    min-width: 7%;
    padding:10px;
}

.booking_button:active {
    background-color: white;

}

.booking_button:visited {
    background-color: white;

}

.buttonAsMessage {
    border-style: none;
    background-color: red;
}

.icon_achtung {
    width: 20px;
    height: auto;
    float: left;
    margin: 10px;
}

/* .tabelle {
    width: 100%;
    border-collapse: collapse;
  } */
  
.tabelle th,
.tabelle td {
padding: 8px;
text-align: left;
}

.tabelle th {
background-color: rgb(120, 162, 234);
}

.tabelle tr:nth-child(odd) {
background-color: lightgrey;
}

.tabelle tr:nth-child(even) {
background-color: rgb(120, 154, 217);
}
