/* CLEAR SEARCH BUTTON */
#clear-search {
    border-bottom-right-radius: 0.30rem !important; /* oder ein passender Wert wie 0.375rem */
    border-top-right-radius: 0.30rem !important; /* oder ein passender Wert wie 0.375rem */
}


/* DROPDOWN FUER FILTER */
.dropdown-menu {
    width: auto; /* Automatische Breite, damit es sich dem Inhalt anpasst */
    min-width: 13em; /* Mindestbreite, um auf kleineren Bildschirmen Platz zu schaffen */

}

.dropdown-menu li {
    white-space: nowrap; /* Verhindert das Umbrechen des Textes */
}

/* EINRÜCKEN VON NAVBAR LINKS MIT EINHEITLICHEN ABSTAND ZUM ICON */
.nav-item i {
    display: inline-block;
    width: 24px;
    text-align: center;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none; /* Entfernen Sie die Unterstreichung für den gesamten Link */
}

/* ACCORDION OHNE FOCUS UM AKTIVEN HEADER */
.no-focus-outline .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* TEXTAREA AUTOMATISCH WACHSEN LASSEN */
textarea {
    overflow-y: hidden;
    resize: none;
    min-height: 8em !important;
    white-space: pre-wrap;
}

/* TEXTAREA BEI FANG SENDEN MIT SCROLLBAR */
#additional_remark {
    overflow-y: auto;
    max-height: 10em;
}

/* ICON CONTAINER IN FANGERFASSUNG IMMER AUF GLEICHE BREITE BRINGEN */
.icon-container {
    min-width: 45px;
    display: flex;
}
.icon-input-container {
    margin-left: 13px;
}

/* BTN FÜR FISCHVORSCHAU IN ANGELTAG LISTE */
.btn.btn-sm.btn-outline-success.no-wrap:disabled {
    opacity: 1; /* Setzt die Durchsichtigkeit auf "voll sichtbar" */
    cursor: default; /* Verwendet den Standardcursor statt des "nicht erlaubt" Cursors */
    /* Fügen Sie hier weitere gewünschte Styles hinzu */
}

.btn.btn-sm.btn-danger.no-wrap:disabled {
    opacity: 1; /* Setzt die Durchsichtigkeit auf "voll sichtbar" */
    cursor: default; /* Verwendet den Standardcursor statt des "nicht erlaubt" Cursors */
    /* Fügen Sie hier weitere gewünschte Styles hinzu */
}

/* PFEIL IN LISTE IMMER VERTIKAL ZENTRIEREN */
.list-group-item.list-group-item-action {
    position: relative; /* Macht es zum Bezugspunkt für absolut positionierte Kinder */
}

.list-group-item.list-group-item-action .d-flex.justify-content-between .fas.fa-chevron-right {
    position: absolute;
    top: 50%;
    right: 15px; /* Je nachdem wie viel Abstand Sie zum Rand möchten, können Sie diesen Wert anpassen */
    transform: translateY(-50%); /* Zentriert den Pfeil vertikal */
}

/* GEWÄSSER CHECK-IN CARD */
#check-in-card {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 30px;
    bottom: 170px;
    width: 300px;
    z-index: 9998;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Hier fügen wir die Transition hinzu */
}


/* INVALID BORDER FÜR FILEUPLOAD */
.invalid-border {
    border: 1px solid red !important;
}

/* MAX IMAGE BREITE IM MODAL - KEIN SCROLLEN */
.modal-body img {
    max-width: 100%;
    height: auto;
}

/* ANLEITUNG */
.smartphone {
    width: 300px;
    height: 600px;
    background-color: #000000;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-top: 2em;
    margin-bottom: 2em;
}

.notch {
    width: 140px;
    height: 30px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 50%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.inner-screen {
    position: absolute;
    top: 40px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background-color: black;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    display: block;
    margin:0 auto;
}

.inner-screen img {
    width: 100%;
    height: 100%;
    padding: 0;
}


/* Standard-Stil für Computer */
.img-thumbnail {
    width: 20em;
    border: none;
}

/* Stil für mobile Geräte */
@media (max-width: 768px) { /* Ändern Sie die Größe nach Bedarf */
    .img-thumbnail {
        width: 80%;
    }
}

/* ANLEITUNG ENDE */
/* LOGO 2x HÜPFEN LASSEN */
.fa-shake-once {
    animation-iteration-count: 2 !important;
}

/* OUTLINE BEIM TOAST VERHINDERN */
.toast a:focus {
    outline: none;
}

/* NAVBAR NUR ZU 80% ÖFFNEN */
#leftOffcanvas, #rightOffcanvas {
    max-width: 80%; /* oder die Breite, die Sie wünschen */
    z-index: 10000; /* oder ein anderer Wert größer als 9999 */
}

/* SLIDEUP FÜR APP-INSTALLATIONS TOAST */
@keyframes slideDown {
    from {
        top: -90px;
    }
    to {
        top: 60px;
    }
}
/* APP-INSTALLATIONS TOAST */
.toast {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.9em;
    position: fixed;
    top: -90px;  /* Startposition außerhalb des Bildschirms */
    right: 0;
    left: 0;
    width: 100%;
    height: 90px;
    border-radius: 25px;
    z-index: 1049; /* Ein niedrigerer Wert als die Navbar */
    animation-name: slideDown;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.navbar {
    z-index: 1050; /* Ein höherer Wert als der Toast */
}

/* CUSTOM BADGES FÜR FISCHANZAHL BEI FÄNGEN */
.custom-badge {
    font-size: 0.6em;       /* Schriftgröße reduzieren */
    position: relative;
    top: -0.3em;               /* Badge nach oben verschieben */
}

.list-group-item {
    position: relative;
}

/* SORTIEREN ICON IN LISTENANSICHT */
.handle {
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    z-index: 1;
    cursor: row-resize;
    opacity: 0.5;
    padding-right: 0.5rem;
}

.file-icon {
    position: absolute;
    top: 50%;
    left: 0.7em;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.5;
    padding-right: 0.5rem;
}

.file-spacer {
    padding-left: 2em;
}

/* SPACER BEI SORTIEREN ICON IN LISTENANSICHT */
.handle-spacer {
    padding-left: 1.7em;
}

/* NAVBAR BUTTON SIZE */
.navbar_button {
    font-size: 1.7em;
    cursor: pointer;
}

/* NAVBAR LOGO */
.navbar_logo {
    color: #ff6600;
}

/* NAVIGATION ACTIVE LINKS UNTERSTREICHEN */
.nav-link.active .nav-text {
    text-decoration: underline;
}

/* PLUS BUTTON RECHTS UNTEN BEI LISTEN */
.blue_round_button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
}


/* PLUS BUTTON RECHTS UNTEN BEI LISTEN */
.green_round_button {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
}

.green_round_button_manual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
}

/* HINWEIS DIALOG */
.hint{
    position: fixed;
    right: 100px;
    bottom: 30px;
    color: white;
    z-index: 9999;
}

/* FEHLER DIALOG */
.alert-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    width: 100%
}

/* INFO BUTTON NEBEN SELECT */
.form-floating-with-icon {
    display: flex;
    align-items: center;
}

/* INFO BUTTON NEBEN SELECT */
.form-floating-with-icon select {
    flex: 1;
}

/* HONEYPOT */
.company {
    display: none;
}

/* KLEINE SCHRIFT FÜR STATISTIK TABELLEN */
.small-column {
    font-size: x-small;
}

/* FIXIERTE SPALTE FÜR STATISTIK TABELLEN */
.fixed-column {
    font-weight: bold;
}


.table-header {
    white-space: nowrap;
}

.table-row {
    white-space: nowrap;
}

.table-row-content-left {
    white-space: nowrap;
    text-align: left;
}

.table-row-content-right {
    white-space: nowrap;
    text-align: right;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}


/* Show it is fixed to the top */
body {
    padding-top: 6rem;
    position: relative;
    margin: 0;
    padding-bottom: 2em;
    box-sizing: border-box;
}

.content {
    width: 95%;
    margin: 0 auto 50px;
    margin-top: 15%;
}

.password-strength {
}

.js-hidden {
    display: none;
}

.footer {
    position: absolute;
    bottom: 0;
    height: 75px;
}
