:root {
    --fc-bg-event-color: rgb(199, 199, 199);
    --fc-bg-event-opacity: 1;
    --fc-today-bg-color: #ffffff;
}

h4, h5, .fc-toolbar-title {
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.hidden {
    display: none;
}

#previous_select {
    display: none;
}


.modal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Höherer Z-Index, damit das Modal oben bleibt */
}


.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.modal button {
    margin: 10px;
    padding: 10px;
    cursor: pointer;
}



.required {
    color: red;
    font-size: 1.2rem;
}

.error-message {
    color: red;
    font-size: 0.9rem;
    display: none; /* Fehler wird standardmäßig ausgeblendet */
}


.action-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
}

.action-button:hover {
    background-color: #0056b3;
}

.forgot-password {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}
.forgot-password:hover {
    color: #0056b3;
}


.lxab-container {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 0.375rem;
    box-shadow: 5px 5px 5px rgba(26, 44, 55, 0.15);
}

/* CSS für die Tabelle, die den Terminbuchungsbereich darstellt */
.lxab-appointment-booker {
    display: flex;
    border: 0 solid #e5e7eb;
    color: rgb(17 24 39);
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.lxab-sidebar {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    flex-grow: 0;
    background-color: #0EA5E9FF;
    padding: 1rem;
    color: #ffffff;
}

.lxab-sidebar-header {
    margin: 0 0 0.5rem;
    font-size: 1.5rem !important;
    font-weight: bold;
    color: #ffffff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.lxab-content {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    flex-grow: 1;
    width: 100%;
}

.lxab-steps {
    padding: 1rem;
}

.lxab-footer {
    margin-top: auto; /* Drückt den Footer nach unten */
    padding: 10px;
    background: #f8f8f8;
    text-align: center;
}

.lxab-header {
    box-shadow: 0 2px 3px rgba(26, 44, 55, 0.15);
}

/* CSS für die Zellen in der Tabelle */

/* CSS für die linke Spalte */
.left-column {
    padding: 1rem !important;
    width: 14rem;
    display: block;
    visibility: visible;
    background-color: rgb(14 165 233);
    border-bottom-left-radius: .375rem;
    border-top-left-radius: .375rem;
    box-sizing: border-box;
    unicode-bidi: isolate;
    border: 0 solid #e5e7eb;
    color: #fff;
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}


/* CSS für die rechte Spalte */
.right-column {
    width: 200%;
    /* Breite der rechten Spalte */
    vertical-align: top;
    border-bottom: 5px solid #ccc;
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    /* Neue Schriftart verwenden */
    padding: 5px;
    font-size: 1rem;
}


#login-button {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    width: 120px;
}


/* Sicherstellen, dass das Eingabefeld sichtbar und nicht deaktiviert ist */
#email-input {
    display: block; /* Sichtbar machen */
    visibility: visible;
    pointer-events: auto; /* Aktivieren des Events */
}

#email-display {
    font-size: 24px; /* Schriftgröße */
    font-weight: bold; /* Fett gedruckt */
    color: #333; /* Dunkelgraue Schriftfarbe */
    padding: 5px; /* Etwas Abstand rund um den Text */
    border: 2px solid #ccc; /* Grauer Rand um den Text */
    border-radius: 5px; /* Abgerundete Ecken */
    background-color: hwb(0 100% 0%); /* Heller Hintergrund */
    min-width: 250px; /* Mindestbreite, um zu verhindern, dass der Text zu klein wird */
    cursor: text; /* Zeigt den Text-Cursor beim Bearbeiten */
}

#email-display:focus {
    outline: none; /* Entfernt den Standardfokus-Rand */
    border-color: hwb(212 29% 11%); /* Blaue Farbe beim Fokus */
    background-color: #e0f7fa; /* Hellblauer Hintergrund beim Bearbeiten */
}

.missing-field {
    color: red;
    font-weight: bold;
}




/* Weiter Button */

.lxab-button-group {
    display: flex;
    justify-content: center;
    gap: 10px; /* Abstand zwischen Buttons */
}

.lxab-button {
    flex-grow: 0;
    margin-left: 0.5rem;
    border-radius: .375rem;
    cursor: pointer;
    color: #fff !important;
    padding: .60rem 2rem !important;
    font-weight: 600;
    height: 2.5rem;
    border: 0 solid #e5e7eb;
    background-color: rgb(14, 165, 233);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 1rem;
}

#lxab-back {
    background-color: rgb(100, 116, 139) !important;
}

#lxab-reset {
    background-color: rgb(239, 68, 68) !important;
}

#lxab-cancel {
    background-color: rgb(239, 68, 68) !important;
}

#services_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap; /* für kleinere Bildschirme */
}


.services-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

.service-item {
    width: calc(25% - 10px);
    min-height: 60px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border-radius: 5px;
}

.service-item.selected {
    background-color: #00bcd4;
    border-color: #00bcd4;
}
.selected-service {
    color: #1e2460;
    /* or any other blue color you prefer */

}


/* CSS für die Überschrift innerhalb der linken Spalte */
.left-column h4 {
    margin: 0;
    font-size: 1.5rem !important;
    font-weight: bold;
}


/* CSS für die Überschrift "Bitte wählen Sie die Filiale ihres Termins" */
.font-semibold {
    font-size: 1.25rem !important;
    margin: 0 !important;
    line-height: 1.2;
    display: block;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-right: .5rem !important;
    padding-left: .5rem !important;
}



/* CSS für die Elemente innerhalb des Abschnitts "branch-info" */
.info-group {
    border-radius: .375rem;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    padding: .5rem !important;
    margin-bottom: .5rem !important;
    background-color: rgb(56 189 248);
    font-weight: 600;
    flex-grow: 1;
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.info-item{
    color: #0369a1;
    display: block;
    font-size: 0.9rem;
}

.info-header {
    display: flex;
    flex-direction: column;
    gap: 4px; /* optionaler Abstand zwischen Titel und Inhalt */
}

.info-title {
    flex-grow: 1;
    font-weight: bold;
    margin-bottom: 2px;
}

.info-item,
.info-indicator {
  display: block;
  color: #003366;
  line-height: 1.5;
  margin-bottom: 4px;
}


.lxab-sidebar-right {
    width: 25%;
    padding-left: 20px;
    background-color: #0ea5e9 !important;
    
}

/*step5 */
.form-control {
    margin-bottom: .5rem;
}

.form-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-error {
    border-color: red !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .25rem rgba(253, 49, 13, 0.25) !important;
}

.form-input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    background-image: url('icon.svg');
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.form-label {
    font: 16;
    margin-bottom: .5rem;
    display: inline-block;
    box-sizing: border-box;
    cursor: default;
    border: 0 solid #e5e7eb;
    color: rgb(17 24 39 / var(--tw-text-opacity));
    font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}


.input-group {
    display: flex;
    gap: 10px;
    /* Abstand zwischen Vorwahl und Telefonnummer */
    width: 100%;
    /* Volle Breite innerhalb des Formulars */
}

.input-group select {
    flex: 0 0 auto;
    /* Kein flexibles Wachstum für das Dropdown-Menü */
}

.input-group input {
    flex: 1;
    /* Flexibles Wachstum für das Eingabefeld, um den verfügbaren Platz auszufüllen */
}

#appointment_services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0;
}

label.service-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px 8px 40px;
  border-radius: 8px;
  background: #f8fcff;
  color: #1a3e5c;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid #a9d6e5;
  transition: 0.25s ease;
}

/* Verstecke Standard-Checkbox */
label.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom Checkbox Box */
label.service-option::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #a9d6e5;
  border-radius: 6px;
  background: white;
  transition: 0.25s ease;
}

/* Haken (unsichtbar standardmäßig) */
label.service-option::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 6px;
  height: 12px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.25s ease;
  opacity: 0;
}

/* Wenn ausgewählt */
label.service-option:has(input[type="checkbox"]:checked) {
  border-color: #00bcd4;
  background-color: #e0f7fa;
  color: #007c91;
  font-weight: 600;
}

label.service-option:has(input[type="checkbox"]:checked)::before {
  background-color: #00bcd4;
  border-color: #00bcd4;
}

label.service-option:has(input[type="checkbox"]:checked)::after {
  border-right-color: white;
  border-bottom-color: white;
  opacity: 1;
}

/* Hover */
label.service-option:hover {
  background-color: #e3f0f7;
  border-color: #3db4c7;
}




/* Da das bei dir Text direkt ist, nicht in span, nehmen wir einfach: */

/* Wir machen alle markanten Styles im Label wenn Checkbox checked ist mit :has, aber :has wird nicht überall unterstützt. Alternativ in JS setzen wir eine Klasse bei checked. */





.type-column h5 {
  margin-bottom: 8px;
  text-align: center;
  font-weight: bold;
}

#calendar {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
}


/* CSS für verfügbare Termine */
.event-available {
    background-color: #ffffff !important;
    border: none !important;
}

/* CSS für nicht verfügbare Termine */
.event-unavailable {
    background-color: #cccccc !important;
    border: none !important;
}


.inverse-background {
    background-color: #cccccc;
}

.closed {
    background-color: #ffffff;
}


#error-message {
    color: red;
}

#step5content {
    width: 100%;
    display: none;
    /* Anfangs ausgeblendet */
}

.text-danger {
    color: #dc3545 !important;
}

.styled-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    background-image: url('icon.svg');
    background-position: right .75rem center;
    background-size: 16px 12px;
    background-repeat: no-repeat;
    border-radius: .25rem;
    appearance: none;
}

.label {
    margin-bottom: .5rem;
    margin-top: .5rem;
    display: inline-block;
    box-sizing: border-box;
}

.waiting-list {
    padding-left: 5px;
    color: #fff;
    background-color: #212529;
    border-color: #212529;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d;
}

.appointment-waiting-button {
    border-radius: .375rem;
    /* Vereinfachte Schreibweise für alle Ecken */
    cursor: pointer;
    color: #fff !important;
    padding: .60rem 2rem !important;
    /* Erhöhte Padding-Werte für mehr Größe */
    font-weight: 600;
    border: 0 solid #e5e7eb;
    background-color: rgb(14, 165, 233);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 1rem;
    /* Optional: Schriftgröße anpassen */
}

.appointment-finish-button {
    border-radius: .375rem;
    /* Vereinfachte Schreibweise für alle Ecken */
    cursor: pointer;
    color: #fff !important;
    padding: .60rem 2rem !important;
    /* Erhöhte Padding-Werte für mehr Größe */
    font-weight: 600;
    border: 0 solid #e5e7eb;
    background-color: rgb(14, 165, 233);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 1rem;
    /* Optional: Schriftgröße anpassen */
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    display: block;
    width: 100%;
    height: 1.5rem;
    float: left;
    box-sizing: border-box;
    padding-bottom: 5%;
    line-height: 1, 5%;

}

.edit-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #007bff;
}

.edit-button:focus {
    outline: none;
}


/* Media Queries für Responsive Design */
@media (max-width: 1024px) {
    .lxab-container {
        flex-direction: column;
    }

    .lxab-sidebar {
        display: none;
        visibility: hidden;
    }

    .lxab-content {
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Mindestens die gesamte Bildschirmhöhe */
    }

    .right-column {
        width: 100%;
        margin: 0;
        border-radius: 0.375rem;
    }
}

@media (max-width: 768px) {
    /* Bereits vorhandene Regeln */

    .lxab-container {
        flex-direction: column;
    }

    .lxab-sidebar {
        display: none;
        visibility: hidden;
    }

    .lxab-content {
        flex-grow: 1;
        width: 100%;
        border-radius: 0.375rem;
    }

    .right-column {
        width: 100%;
        margin: 0;
        border-radius: 0.375rem;
    }

    
}

#login-form {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed; /* Fixiert an der Mitte des Viewports */
    top: 50%; /* Vertikal zentriert */
    left: 50%; /* Horizontal zentriert */
    transform: translate(-50%, -50%); /* Exakte Zentrierung */
    width: 500px; /* Breitere Darstellung */
    max-width: 90%; /* Anpassung für kleinere Bildschirme */
    background-color: #ffffff; /* Weißer Hintergrund */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Schatten für Tiefe */
    border-radius: 12px; /* Abgerundete Ecken */
    padding: 40px; /* Innenabstand für das Formular */
    text-align: center; /* Zentrierter Inhalt */
    z-index: 1000; /* Oberste Ebene */
}

#login-form h2 {
    margin-bottom: 25px; /* Abstand zur Überschrift */
    font-size: 28px; /* Größere Schriftgröße */
    font-weight: bold; /* Fettgedruckt */
    color: #333; /* Dunklere Schriftfarbe */
}

#login-form label {
    display: block;
    margin-bottom: 10px; /* Abstand zwischen Label und Eingabefeld */
    font-weight: bold;
    text-align: left; /* Links ausgerichtet */
}

#login-form input {
    width: 100%; /* Volle Breite */
    padding: 15px; /* Innenabstand */
    margin-bottom: 20px; /* Abstand zwischen Feldern */
    border: 1px solid #ccc; /* Rahmen */
    border-radius: 8px; /* Abgerundete Ecken */
    font-size: 16px; /* Angenehme Schriftgröße */
}

#login-form button {
    width: 100%; /* Volle Breite */
    padding: 15px;
    background-color: #007bff; /* Blaue Farbe */
    color: #ffffff; /* Weiße Schrift */
    font-size: 18px; /* Größere Schrift */
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Weicher Hover-Effekt */
}

#login-form button:hover {
    background-color: #0056b3; /* Dunkleres Blau bei Hover */
}

.editable-profile-fields {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Inhalt horizontal */
    justify-content: center;
    margin-top: 20px; /* Abstand nach oben */
}


/* Die Tabelle selbst */
.user-info-table {
    width: 60%; /* Breite der Tabelle anpassen */
    border-collapse: collapse;
    margin-bottom: 20px; /* Abstand nach unten */
}
/* Einzelne Felder */
.custom-form-control {
    display: flex;
    flex-direction: column;
}

/* Tabellenzellen */
.user-info-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Label in der Tabelle */
.field-label {
    font-weight: bold;
    text-align: left;
    width: 150px;
}

/* Wert in der Tabelle */
.field-value {
    font-size: 16px;
    color: #333;
}

/* Bearbeiten-Button */
#edit-btn {
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Abstand zum Button */
    align-self: flex-end; /* Button nach rechts ausrichten */
}
  

#appointment-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkler Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Damit es über anderen Elementen angezeigt wird */
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

button {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #2364a1;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


