@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --bandel-sells-whatsapp-gray: #54656F;
    --bandel-sells-whatsapp-light-gray: #F5F6F6;
    --bandel-sells-whatsapp-light-gray-selected: #F0F2F5;
    --bandel-sells-whatsapp-white: #FFFFFF;
    --bandel-sells-whatsapp-dark-green: #D9FDD3;
    --bandel-sells-whatsapp-light-green: #00A884;
    --bandel-sells-whatsapp-dark-gray: #111B28;
    --bandel-sells-whatsapp-medium-gray: #A2ACB2;
    --bandel-sells-dark-gray: #121212;
    --bandel-sells-medium-gray: #242424;
    --bandel-sells-light-gray: #e3e3e3;
    --bandel-sells-dark-blue: #2D398B;
    --bandel-sells-dark-blue-transparent: #2d398b61;
    --bandel-sells-medium-blue: #40A5F4;
    --bandel-sells-light-blue: #19c6fa33;
    --bandel-sells-white: white;
    --bandel-sells-light-grey: lightgrey;
    --bandel-sells-black: black;
    --bandel-sells-pink: #F40AD6;
    --bandel-sells-light-pink: #f40ad630;
    --bandel-sells-purple: #8B64E7;
    --bandel-sells-turqoise: #17a2b8;
    --bandel-sells-green: #28A745;
    --bandel-sells-sidebar-left: 180px;
    --bandel-sells-cart-width: 400px;
    --bandel-sells-main-inner-padding: 1rem;
    --bandel-sells-medium-font-size: 14px;
    --bandel-sells-datepicker-theme: light;
    --bandel-sells-background: var(--bandel-sells-white);
    --bandel-sells-foreground: var(--bandel-sells-black);
    --bandel-sells-chats-background: var(--bandel-sells-whatsapp-white);
    --bandel-sells-chats-background-hover: var(--bandel-sells-whatsapp-light-gray);
    --bandel-sells-chats-background-selected: var(--bandel-sells-whatsapp-light-gray-selected);
    --bandel-sells-chats-text-secondary: var(--bandel-sells-whatsapp-medium-gray);
    --bandel-sells-chats-text-primary: var(--bandel-sells-whatsapp-dark-gray);
    --bandel-sells-chats-green: var(--bandel-sells-whatsapp-dark-green);
    --bandel-sells-chats-light-green: var(--bandel-sells-whatsapp-light-green);
}

.dark-mode {
    --bandel-sells-whatsapp-header: #202C33;
    --bandel-sells-whatsapp-reallydark: #111B21;
    --bandel-sells-whatsapp-mediumdark: #202C33;
    --bandel-sells-whatsapp-mediumdark-selected: #2A3942;
    --bandel-sells-whatsapp-green: #005C4B;
    --bandel-sells-whatsapp-gray: #8696A0;
    --bandel-sells-whatsapp-white: #E9EDEF;
    --bandel-sells-dark-blue: #707fe3;
    --bandel-sells-dark-blue-transparent: #2d398b61;
    --bandel-sells-medium-blue: #40A5F4;
    --bandel-sells-light-blue: #19c6fa33;
    --bandel-sells-white: white;
    --bandel-sells-light-grey: #494949;
    --bandel-sells-black: black;
    --bandel-sells-pink: #F40AD6;
    --bandel-sells-light-pink: #f40ad630;
    --bandel-sells-purple: #8B64E7;
    --bandel-sells-sidebar-left: 180px;
    --bandel-sells-cart-width: 400px;
    --bandel-sells-datepicker-theme: dark;
    --bandel-sells-background: var(--bandel-sells-medium-gray);
    --bandel-sells-foreground: var(--bandel-sells-light-gray);
    --bandel-sells-chats-background: var(--bandel-sells-whatsapp-reallydark);
    --bandel-sells-chats-background-hover: var(--bandel-sells-whatsapp-mediumdark);
    --bandel-sells-chats-background-selected: var(--bandel-sells-whatsapp-mediumdark-selected);
    --bandel-sells-chats-text-secondary: var(--bandel-sells-whatsapp-gray);
    --bandel-sells-chats-text-primary: var(--bandel-sells-whatsapp-white);
    --bandel-sells-chats-green: var(--bandel-sells-whatsapp-green);
    --bandel-sells-chats-header: var(--bandel-sells-whatsapp-header);
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bandel-sells-background) !important;
    color: var(--bandel-sells-foreground) !important;
    position: relative;
}

.page {
    height: 100%;
    overflow-y: auto;
}

span, p {
    line-height: 100%;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.fw-bold {
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

.background-opacity-image {
    background-size: cover; /* Anpassen, wie das Bild im Hintergrund skaliert wird */
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.07; /* Opazität für das Hintergrundbild (10%) */
    pointer-events: none;
}

    .background-opacity-image::before {
        content: "";
        background-image: url('@backgroundImageUrl');
        background-size: cover; /* Anpassen, wie das Bild im Hintergrund skaliert wird */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1; /* Opazität für das Hintergrundbild (10%) */
        z-index: -1; /* Hinter dem Hauptinhalt platzieren */
    }

.gold-border {
    border: 4px solid hidden;
    position: fixed;
    top: 0;
    right: 30%;
    bottom: 0;
    left: 30%;
    z-index: 0;
    background-color: lightgoldenrodyellow;
    height: 6%;
    text-align: center;
}
/* CSS-Stile für Blazor-Seite */
#element::-webkit-scrollbar {
    display: none !important;
}

::-webkit-scrollbar {
    display: block !important;
}

::-webkit-scrollbar {
    display: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--bandel-sells-foreground) !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

.bs-notification {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--bandel-sells-main-inner-padding);
    border-radius: 8px;
    font-weight: bold;
    color: black;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.bs-notification-error {
    background-color: lightcoral;
}

.bs-notification-success {
    background-color: #00ff00;
}

.bs-notification-constant {
    background-color: #cbc131;
}

.bs-notification-constant-error {
    background-color: indianred;
}

/* Container */
.bs-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header-Menü */
.bs-header {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs-header-logo-img {
    height: 100%;
    width: var(--bandel-sells-sidebar-left);
}

.bs-header-welcome-msg {
    flex-grow: 1;
    margin-inline-start: 1rem;
    font-size: 1.25rem;
}

.bs-header-cart-dot-single-digit {
    min-width: 20px;
    min-height: 20px;
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: var(--bandel-sells-background);
    top: 4px;
    right: 4px;
    border: 2px solid var(--bandel-sells-background);
    border-radius: 50%;
    background-color: red;
    padding-inline: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-header-cart-dot-double-digit {
    min-width: 20px;
    min-height: 20px;
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: var(--bandel-sells-background);
    top: 4px;
    right: 0;
    border: 2px solid var(--bandel-sells-background);
    border-radius: 16px;
    background-color: red;
    padding-inline: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-header-cart-dot-triple-digit {
    min-width: 20px;
    min-height: 20px;
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: var(--bandel-sells-background);
    top: 4px;
    right: -6px;
    border: 2px solid var(--bandel-sells-background);
    border-radius: 16px;
    background-color: red;
    padding-inline: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-header-notification-icon {
    color: var(--bandel-sells-dark-blue);
    margin-left: 1rem;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

    .bs-header-notification-icon:hover {
        box-shadow: 0px 0px 4px 0px var(--bandel-sells-medium-blue);
        transform: scale(1.05);
    }

.bs-header-notification-dot {
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    border: 2px solid var(--bandel-sells-background);
    position: absolute;
    top: 0;
    right: 0;
}

.bs-notification-ul {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    width: 320px;
    position: absolute;
    right: 1rem;
    top: 9vh;
    border-radius: 8px;
    z-index: 21;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}

.bs-notification-ul-hide {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    width: 320px;
    position: absolute;
    right: 80px;
    top: 9vh;
    border-radius: 8px;
    z-index: -10;
    opacity: 0;
    transform: translateX(25%);
    transition: all 0.3s ease-in-out;
}

.bs-notification-li {
    padding: 1rem;
    border-bottom: 1px solid var(--bandel-sells-light-grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

    .bs-notification-li:hover {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-notification-li:first-of-type {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .bs-notification-li:last-of-type {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.user-icon {
    margin-inline: 1rem;
    background-color: var(--bandel-sells-medium-blue);
    color: var(--bandel-sells-background);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.bs-header-profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-dropdown-ul {
    position: absolute;
    right: 1rem;
    top: 9vh;
    background-color: var(--bandel-sells-background);
    border-radius: 8px;
    z-index: 20;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}

.user-dropdown-ul-hide {
    position: absolute;
    right: 1rem;
    top: 9vh;
    background-color: var(--bandel-sells-background);
    border-radius: 8px;
    z-index: -20;
    transform: translateX(9%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.user-dropdown-li {
    padding: 1rem;
    border-bottom: 1px solid var(--bandel-sells-light-grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

    .user-dropdown-li:hover {
        background-color: var(--bandel-sells-light-grey);
    }

    .user-dropdown-li:first-of-type {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .user-dropdown-li:last-of-type {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.bs-main {
    display: flex;
    height: 90vh;
    position: relative;
}
/* Linkes Menü */
.bs-sidebar-left {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    width: var(--bandel-sells-sidebar-left);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: scroll;
}

.bs-sidebar-left-li {
    background-color: var(--bandel-sells-background);
    font-size: 14px;
    height: 56px;
    display: flex;
    align-items: center;
    padding-inline: 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid var(--bandel-sells-light-grey);
    min-height: 56px;
    font-size: 14px;
}

    .bs-sidebar-left-li:hover, .bs-sidebar-left-dropdown-li:hover {
        transform: scale(1.02);
        background-color: var(--bandel-sells-light-grey);
    }

.bs-sidebar-left-dropdown-li {
    background-color: var(--bandel-sells-background);
    font-size: 14px;
    height: 34px;
    display: flex;
    align-items: center;
    padding-inline-start: 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid var(--bandel-sells-light-grey);
    margin-inline-start: 8px;
    min-height: 34px;
    font-size: 12px;
}

.bs-active-sidebar-left-li {
    color: var(--bandel-sells-dark-blue);
    font-weight: bold;
}

.bs-sidebar-left-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}
/* Bereich in der Mitte */
.bs-content {
    width: calc(100% - var(--bandel-sells-sidebar-left));
    transition: all 0.3s ease-in-out;
    margin-right: var(--bandel-sells-main-inner-padding);
}

.bs-content-show-cart {
    width: calc(100% - (var(--bandel-sells-cart-width) + var(--bandel-sells-sidebar-left)));
    transition: all 0.3s ease-in-out;
}

/* Rechtes Menü */
.bs-sidebar-right {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    padding-inline: 1rem;
    width: var(--bandel-sells-cart-width);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    position: absolute;
    height: 100%;
    right: 0;
    opacity: 1;
}

.no-cart {
    width: 0px;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.bs-cart-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.bs-sidebar-right-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 1rem;
}

.bs-cart-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-cart-header-icon:hover {
        background-color: var(--bandel-sells-light-grey);
        transform: scale(1.1);
    }

.bs-cart-header-btns {
    display: flex;
    flex-grow: 1;
    gap: 4px;
    justify-content: end;
}

.bs-cart-header-btn {
    height: 48px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bs-cart-customer-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.bs-cart-customer-data-wrapper {
    flex-grow: 1;
    font-size: 14px;
}

.bs-cart-customer-data {
    display: flex;
    flex-grow: 1;
}

.bs-cart-customer-name {
    flex-grow: 1;
}

.bs-cart-customer-delete {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: red;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
}

    .bs-cart-customer-delete:hover {
        transform: scale(1.1);
        background-color: indianred;
        color: white;
    }

.cart-ul {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-li-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    color: var(--bandel-sells-dark-blue);
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--bandel-sells-light-grey);
}

.menge-btn {
    height: 24px;
    width: 24px;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-art-menge {
    padding-inline-end: 8px;
    min-width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bs-cart-art-menge {
    font-size: 12px;
}

.cart-art-preise {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
}

.cart-art-einzelpreis {
    width: 64px;
    text-align: end;
}

.cart-li-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-start: .75rem;
    height: 100px;
    font-size: var(--bandel-sells-medium-font-size);
}

.cart-li-item-unsync {
    background-color: var(--bandel-sells-medium-blue);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 var(--bandel-sells-light-grey);
}

.cart-art-info {
    width: calc(100% - 80px);
    margin-inline-start: 8px;
    display: flex;
    flex-direction: column;
}

.cart-art-info-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.cart-art-info-title {
    flex-grow: 1;
    font-weight: bold;
    font-size: var(--bandel-sells-medium-font-size);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of rows before ellipsis */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-art-info-artnumber {
    font-size: var(--bandel-sells-medium-font-size);
}

.cart-art-preis {
    width: 72px;
    text-align: end;
}

.text-end {
    text-align: end;
}

.einzelpreis-wrapper {
    display: flex;
    align-items: center;
}

.einzelpreis-input {
    width: 56px;
    height: 32px;
    padding-inline-start: 4px;
    background-color: transparent;
    border: 1px solid var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-foreground);
    text-align: end;
}

    .einzelpreis-input:focus {
        outline: none;
    }

.fullscreen {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: inset 0px 0px 8px 0px var(--bandel-sells-dark-blue);
    border-radius: 8px;
    overflow-y: scroll;
}

.bs-cart-gesamt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    font-size: 1rem;
    color: var(--bandel-sells-dark-blue);
}

.bs-cart-btns {
    display: flex;
    justify-content: space-between;
    padding-block-end: 1rem;
}

.bs-cart-btn {
    width: 32%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 14px;
    font-weight: bold;
}

.triangle {
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent yellow transparent;
}

.bs-chat-li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loaderMain {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loading-circle {
    width: 120px;
    height: 120px;
    position: relative;
    animation: spin 1.5s infinite linear;
}

.inner-circle,
.outer-circle,
.circle-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.inner-circle {
    width: 56px;
    height: 56px;
    background-color: #0000ff;
    transform: scale(0.7);
}

.outer-circle {
    width: 84px;
    height: 84px;
    background-color: transparent;
    border: 4px solid #ffffff;
    border-top-color: #0000ff;
    border-bottom-color: #0000ff;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.circle-shadow {
    width: 120px;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.1);
    filter: blur(4px);
}

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.bs-circleTel {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 200px;
    height: 80px;
    /*border-radius: 50%;*/
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.modern-button {
    border: none; /* Keine Rahmenlinie */
    color: var(--bandel-sells-black); /* Textfarbe */
    padding: 10px 16px; /* Innenabstand oben/unten links/rechts */
    text-align: center; /* Zentrierte Ausrichtung des Textes */
    font-weight: bold;
    text-decoration: none; /* Keine Textdekorationen */
    font-size: 13px; /* Schriftgröße */
    border-radius: 4px; /* Abrundung der Ecken */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Schatten */
    transition: box-shadow 0.3s ease-in-out; /* Übergangseffekt für den Schatten */
    background-color: lawngreen;
}

    .modern-button:hover {
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); /* Schatten bei Hover */
    }

    .modern-button:disabled {
        background-color: gray;
    }

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#popup {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bandel-sells-main-inner-padding);
}

    #popup h1 {
        margin-top: 0;
    }

    #popup > input {
        width: 100%;
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        padding: 8px;
    }

.popup-message {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .popup-message > div {
        cursor: pointer;
    }

.bs-popup-text-area {
    width: 100%;
    padding: 8px;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
}

.bs-save-cart-popup-btns {
    display: flex;
    justify-content: space-between;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-save-cart-popup-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#small-input {
    width: 200px;
    padding: 10px;
    margin-bottom: 10px;
}

#large-textarea {
    width: 400px;
    height: 200px;
    padding: 10px;
}

#submit-btn {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

    #submit-btn:hover {
        background-color: #45a049;
    }



body {
    font-family: "Poppins", sans-serif;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.login-page {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-logo-img {
    max-width: 800px; /* Passe die Größe des Logos hier an */
    width: 60%;
    height: 50%;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 8px;
    width: 30%;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-username {
    display: flex;
    gap: 1rem;
}

.form-field input {
    height: 38px;
    border: 1px solid lightgray;
    padding-inline: 0.5rem;
    background-color: transparent !important;
    color: var(--bandel-sells-foreground) !important;
}

    .form-field input:focus {
        outline: none;
    }

.username-input {
    background-color: transparent !important;
    color: var(--bandel-sells-foreground) !important;
}

.login-btn {
    background-color: var(--bandel-sells-dark-blue);
    color: white;
}

.bs-dashboard-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    gap: var(--bandel-sells-main-inner-padding);
    padding: var(--bandel-sells-main-inner-padding);
}

.bs-dashboard-history {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 8px;
}

.bs-dashboard-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border: 2px solid var(--bandel-sells-purple);
    border-radius: 8px;
    padding: .5rem;
    color: var(--bandel-sells-purple);
}

.bs-dashboard-history-header-select-wrapper > p {
    font-weight: bold;
    margin-bottom: 4px;
}

.bs-dashboard-history-header-select-wrapper > select {
    height: 24px;
    padding: 0 !important;
    background-color: transparent;
    border: 1px solid var(--bandel-sells-dark-blue);
    border-radius: 4px;
    cursor: pointer;
    color: var(--bandel-sells-foreground);
}

.dropdown {
    background-color: var(--bandel-sells-background) !important;
    color: var(--bandel-sells-foreground) !important;
}

.bs-dashboard-history-header-select-wrapper > select:focus {
    outline: none;
}

.bs-dashboard-history-header-dates-wrapper {
    display: flex;
    gap: 1rem;
}

.bs-dashboard-history-header-date-picker > p {
    font-weight: bold;
    margin-bottom: 4px;
}

.bs-dashboard-history-header-date-picker > input {
    height: 24px;
    background-color: transparent;
    border: 1px solid var(--bandel-sells-dark-blue);
    border-radius: 4px;
    cursor: pointer;
    padding-inline-start: 4px;
    color: var(--bandel-sells-foreground);
    color-scheme: var(--bandel-sells-datepicker-theme);
    color: white;
}

    .bs-dashboard-history-header-date-picker > input:focus {
        outline: none;
    }


.bs-dashboard-datepicker-btns {
    display: flex;
    gap: 8px;
    padding: var(--bandel-sells-main-inner-padding);
}

.bs-dashboard-datepicker-btn {
    border: 1px solid var(--bandel-sells-purple);
    font-weight: bold;
    font-size: 14px;
    color: var(--bandel-sells-purple);
    background-color: var(--bandel-sells-background);
    padding-block: var(--bandel-sells-main-inner-padding);
}

    .bs-dashboard-datepicker-btn:hover {
        background-color: var(--bandel-sells-purple);
        color: var(--bandel-sells-white);
    }

    .bs-dashboard-datepicker-btn:focus {
        outline: none;
    }

.bs-dashboard-history-table {
    border: 2px solid var(--bandel-sells-dark-blue);
    height: calc(100% - 80px);
    border-radius: 8px;
}

.bs-dashboard-history-table-header {
    display: flex;
    justify-content: space-between;
    height: 48px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    font-weight: bold;
    padding-inline: 8px;
    padding-block: 16px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .bs-dashboard-history-table-header > p:not(:last-child) {
        width: calc(100% / 8);
    }

    .bs-dashboard-history-table-header > p:first-child {
        width: 64px;
    }

    .bs-dashboard-history-table-header > p:nth-child(3) {
        flex-grow: 1;
    }

.bs-dashboard-history-table-ul {
    background-color: var(--bandel-sells-background);
    height: calc(100% - 48px);
    overflow-y: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.bs-dashboard-history-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    width: 100%;
}

    .bs-dashboard-history-table-li:nth-of-type(2n) {
        background-color: var(--bandel-sells-dark-blue-transparent);
    }

    .bs-dashboard-history-table-li > p:not(:last-child) {
        width: calc(100% / 8);
        font-size: 14px;
    }

    .bs-dashboard-history-table-li > p:first-child {
        width: 64px;
    }

    .bs-dashboard-history-table-li > p:nth-child(3) {
        flex-grow: 1;
    }

.bs-dashboard-windows {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bs-dashboard-warenkorbe-window {
    height: calc(100% / 3);
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.bs-dashboard-warenkorbe-window-title {
    font-weight: bold;
    color: var(--bandel-sells-dark-blue);
    padding-inline: 8px;
    margin-bottom: 8px;
}

.bs-dashboard-warenkorbe-window-header {
    font-size: var(--bandel-sells-medium-font-size);
    font-weight: bold;
    color: var(--bandel-sells-white);
    padding: 8px;
    background-color: var(--bandel-sells-pink);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .bs-dashboard-warenkorbe-window-header > p:last-child {
        text-align: end;
    }

.bs-dashboard-warenkorbe-window-ul {
    border: 2px solid var(--bandel-sells-pink);
    height: 100%;
    overflow-y: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-dashboard-warenkorbe-window-li {
    padding: 8px;
    background-color: var(--bandel-sells-light-pink);
    border-radius: 8px;
}

.bs-dashboard-warenkorbe-window-li-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.bs-dashboard-warenkorbe-window-li-top-item {
    font-size: var(--bandel-sells-medium-font-size);
    width: calc(100% / 3);
}

    .bs-dashboard-warenkorbe-window-li-top-item > p:first-child {
        font-weight: bold;
        color: var(--bandel-sells-pink);
    }

    .bs-dashboard-warenkorbe-window-li-top-item:last-child > p {
        text-align: end;
    }

.bs-dashboard-warenkorbe-window-li-top > p {
    width: calc(100% / 3);
    font-size: var(--bandel-sells-medium-font-size);
}

    .bs-dashboard-warenkorbe-window-li-top > p:last-child {
        text-align: end;
    }

.bs-dashboard-warenkorbe-window-li-description {
    font-size: var(--bandel-sells-medium-font-size);
}

.bs-dashboard-warenkorbe-window-li-items {
    font-size: var(--bandel-sells-medium-font-size);
}

.bs-dashboard-warenkorbe-window-li-anmerkung {
    font-size: var(--bandel-sells-medium-font-size);
    margin-bottom: 4px;
}

    .bs-dashboard-warenkorbe-window-li-anmerkung > p:first-child {
        color: var(--bandel-sells-pink);
        font-weight: bold;
    }

.bs-dashboard-warenkorbe-window-li-items {
    font-size: var(--bandel-sells-medium-font-size);
}

    .bs-dashboard-warenkorbe-window-li-items > p:first-child {
        color: var(--bandel-sells-pink);
        font-weight: bold;
    }

.bs-dashboard-warenkorb-menu-items {
    height: 100%;
    overflow-y: auto;
}

.blazor-context-submenu {
    height: 80vh !important;
    top: 10% !important;
    overflow-y: auto;
}

.blazor-context-menu--default {
    background-color: var(--bandel-sells-background) !important;
    color: var(--bandel-sells-foreground) !important;
}

.bs-dashboard-kunden-window {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    height: calc(100% / 3);
    border-radius: 8px;
    border: 2px solid var(--bandel-sells-medium-blue);
    display: flex;
    flex-direction: column;
}

.bs-dashboard-kunden-window-header {
    background-color: var(--bandel-sells-medium-blue);
    font-weight: bold;
    font-size: var(--bandel-sells-medium-font-size);
    color: var(--bandel-sells-white);
    padding: 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.bs-dashboard-kunden-window-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    height: 100%;
    overflow-y: auto;
}

.bs-dashboard-kunden-window-li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--bandel-sells-light-blue);
    border-radius: 8px;
    padding: 8px;
}

.bs-dashboard-kunden-window-li-item {
    font-size: var(--bandel-sells-medium-font-size);
}

    .bs-dashboard-kunden-window-li-item > p:first-child {
        font-weight: bold;
        color: var(--bandel-sells-medium-blue);
    }

    .bs-dashboard-kunden-window-li-item:last-child > p {
        text-align: end;
    }

.bs-dashboard-stats-window {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    border-radius: 8px;
    height: calc(100% / 3);
    border: 2px solid var(--bandel-sells-light-blue);
    display: flex;
    flex-direction: column;
}

.bs-dashboard-stats-window-header {
    background-color: var(--bandel-sells-light-blue);
    font-weight: bold;
    font-size: var(--bandel-sells-medium-font-size);
    color: var(--bandel-sells-foreground);
    padding: 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    justify-content: space-between;
}

.bs-dashboard-stats-window-data-wrapper {
    height: 100%;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-dashboard-stats-window-data {
    background-color: var(--bandel-sells-light-blue);
    height: 50%;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bs-dashboard-stats-window-data-item {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    align-items: center;
}

    .bs-dashboard-stats-window-data-item > p:last-child {
        font-size: 14px;
        margin-left: 4px;
    }

.gruene-zahl {
    color: green;
}

.darkgruene-zahl {
    color: darkgreen;
}

.rote-zahl {
    color: red;
}

.gelb-zahl {
    color: sandybrown;
}

.bs-kunden-wrapper {
    display: flex;
    flex-direction: column;
    padding: var(--bandel-sells-main-inner-padding);
    gap: var(--bandel-sells-main-inner-padding);
    height: 100%;
}

.bs-kunden-search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bs-kunden-change-icon {
    cursor: pointer;
}


.bs-kunden-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: calc(100% / 10);
    height: 40px;
    font-size: var(--bandel-sells-medium-font-size);
    background-color: transparent;
    border-width: 1px;
}

.bs-search-bar-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
    height: 40px;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 20px;
    color: var(--bandel-sells-dark-blue);
    padding-inline: var(--bandel-sells-main-inner-padding);
    flex-grow: 1;
}

    .bs-search-bar-form > input {
        background-color: transparent !important;
        border: none;
        width: 80%;
        color: var(--bandel-sells-foreground) !important;
        font-size: var(--bandel-sells-medium-font-size);
    }

        .bs-search-bar-form > input:focus {
            outline: none;
            background-color: transparent !important;
        }

        .bs-search-bar-form > input::placeholder {
            color: var(--bandel-sells-dark-blue);
        }


.bs-kunden-search-form {
    width: calc(100% / 7);
}

.bs-kunden-table {
    display: flex;
    flex-direction: column;
    height: calc(100% - 56px);
}

.bs-kunden-table-header {
    background-color: var(--bandel-sells-dark-blue);
    color: white;
    display: flex;
    justify-content: space-between;
    padding-block: var(--bandel-sells-main-inner-padding);
    padding-inline: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    gap: 8px;
    height: 48px;
}

    /*    .bs-kunden-table-header > p {
        width: calc(100% / 7);
    }*/

    .bs-kunden-table-header > p:first-child {
        width: 160px;
    }

    .bs-kunden-table-header > p:nth-child(2) {
        width: 70px;
    }

    .bs-kunden-table-header > p:nth-child(3) {
        width: 340px;
    }

    .bs-kunden-table-header > p:nth-child(4) {
        width: 200px;
    }

    .bs-kunden-table-header > p:nth-child(5) {
        width: 160px;
    }

    .bs-kunden-table-header > p:nth-child(6) {
        width: 56px;
    }

    .bs-kunden-table-header > div {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

.bs-kunden-table-ul {
    border-left: 2px solid var(--bandel-sells-dark-blue);
    border-right: 2px solid var(--bandel-sells-dark-blue);
    border-bottom: 2px solid var(--bandel-sells-dark-blue);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    height: calc(100% - 48px);
    overflow-y: auto;
}

.bs-kunden-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

    .bs-kunden-table-li:nth-child(2n+1) {
        background-color: var(--bandel-sells-dark-blue-transparent);
    }
    /*.bs-kunden-table-li > p {
    width: calc(100% / 7);
}*/
    .bs-kunden-table-li > p:first-child {
        width: 160px;
    }

    .bs-kunden-table-li > p:nth-child(2) {
        width: 70px;
    }

    .bs-kunden-table-li > p:nth-child(3) {
        width: 340px;
    }

    .bs-kunden-table-li > p:nth-child(4) {
        width: 200px;
    }

    .bs-kunden-table-li > p:nth-child(5) {
        width: 160px;
    }

    .bs-kunden-table-li > p:nth-child(6) {
        width: 56px;
    }

    .bs-kunden-table-li > div {
        flex-grow: 1;
    }

.bs-kunden-table-li-action-icons-wrapper {
    display: flex;
    justify-content: space-between;
}

.bs-kunden-table-li-action-icon-wrapper-custom {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: green;
}

    .bs-kunden-table-li-action-icon-wrapper-custom:hover {
        background-color: var(--bandel-sells-green) !important;
        color: var(--bandel-sells-foreground) !important;
    }

.bs-kunden-table-li-action-icon-wrapper-custom-nobackground {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: green;
}

    .bs-kunden-table-li-action-icon-wrapper-custom-nobackground:hover {
        background-color: transparent;
        color: var(--bandel-sells-foreground) !important;
    }

.bs-kunden-table-li-action-icon-wrapper {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

    .bs-kunden-table-li-action-icon-wrapper:hover {
        transform: scale(1.1);
    }

    .bs-kunden-table-li-action-icon-wrapper:first-of-type {
        color: var(--bandel-sells-purple);
    }

        .bs-kunden-table-li-action-icon-wrapper:first-of-type:hover {
            background-color: var(--bandel-sells-purple);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:nth-of-type(2) {
        color: var(--bandel-sells-pink);
    }

        .bs-kunden-table-li-action-icon-wrapper:nth-of-type(2):hover {
            background-color: var(--bandel-sells-pink);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:nth-of-type(3) {
        color: var(--bandel-sells-medium-blue);
    }

        .bs-kunden-table-li-action-icon-wrapper:nth-of-type(3):hover {
            background-color: var(--bandel-sells-medium-blue);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:nth-of-type(4) {
        color: var(--bandel-sells-turqoise);
    }

        .bs-kunden-table-li-action-icon-wrapper:nth-of-type(4):hover {
            background-color: var(--bandel-sells-turqoise);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:nth-of-type(5) {
        color: var(--bandel-sells-green);
    }

        .bs-kunden-table-li-action-icon-wrapper:nth-of-type(5):hover {
            background-color: var(--bandel-sells-green);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:nth-of-type(6) {
        color: var(--bandel-sells-chats-light-green);
    }

        .bs-kunden-table-li-action-icon-wrapper:nth-of-type(6):hover {
            background-color: var(--bandel-sells-chats-light-green);
            color: var(--bandel-sells-foreground);
        }

    .bs-kunden-table-li-action-icon-wrapper:last-of-type {
        color: yellow;
    }

        .bs-kunden-table-li-action-icon-wrapper:last-of-type:hover {
            background-color: #ffff0094;
            color: var(--bandel-sells-foreground);
        }

.bs-bg-yellow {
    color: yellow;
}

    .bs-bg-yellow:hover {
        background-color: #ffff0094;
        color: var(--bandel-sells-foreground);
    }

.bs-kunden-popup-newkunde {
    user-select: none;
}

.bs-kunden-popup-newkunde-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bs-kunden-popup-newkunde-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bs-kunden-popup-newkunde-form {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    margin-block: var(--bandel-sells-main-inner-padding);
}

.bs-kunden-popup-newkunde-form-row {
    display: flex;
    justify-content: space-between;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-kunden-popup-newkunde-form-input-item {
    width: 340px;
}

    .bs-kunden-popup-newkunde-form-input-item > label {
        color: var(--bandel-sells-turqoise);
        font-weight: bold;
        user-select: none;
    }

    .bs-kunden-popup-newkunde-form-input-item > input {
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        width: 100%;
        height: 48px;
        border: 1px solid var(--bandel-sells-foreground);
        padding-inline: 8px;
    }

        .bs-kunden-popup-newkunde-form-input-item > input:focus {
            border: 1px solid var(--bandel-sells-dark-blue);
        }

.bs-kunden-popup-newkunde-form-input-item-input {
    background-color: transparent;
    color: var(--bandel-sells-foreground);
    width: 100%;
    height: 48px;
    border: 1px solid var(--bandel-sells-foreground);
    padding-inline: 8px;
}

.bs-kunden-popup-newkunde-form-save-new-phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--bandel-sells-foreground);
    height: 48px;
    border-radius: 4px;
}

    .bs-kunden-popup-newkunde-form-save-new-phone-input-wrapper > input {
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        width: 100%;
        height: 48px;
        border: none;
        padding-inline: 8px;
    }

        .bs-kunden-popup-newkunde-form-save-new-phone-input-wrapper > input:focus {
            outline: none;
        }

.bs-kunden-popup-newkunde-form-save-new-phone-icon {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--bandel-sells-green);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-right: 8px;
}

    .bs-kunden-popup-newkunde-form-save-new-phone-icon:hover {
        background-color: var(--bandel-sells-green);
        color: var(--bandel-sells-foreground);
        transform: scale(1.1);
    }

.bs-kunden-popup-newkunde-form-more-phonenr-ul {
    height: 96px;
    border: 1px solid var(--bandel-sells-foreground);
    overflow-y: auto;
    width: 100%;
    border-radius: 4px;
}

.bs-kunden-popup-newkunde-form-more-phonenr-li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .5rem;
}

    .bs-kunden-popup-newkunde-form-more-phonenr-li:hover {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-kunden-popup-newkunde-form-more-phonenr-li > div {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: red;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .bs-kunden-popup-newkunde-form-more-phonenr-li > div:hover {
            background-color: indianred;
            color: var(--bandel-sells-foreground);
            transform: scale(1.1);
        }

.bs-kunden-popup-newkunde-btns {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.bs-kunden-popup-newkunde-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    padding: 1rem;
}

.KDSeite {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 820px;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    display: flex;
    gap: 8px;
}

.KDSeiteHidden {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-color: red;
    color: var(--bandel-sells-foreground);
    display: flex;
    gap: 8px;
    padding: 8px;
}

.kdseite-close-btn {
    border: 1px solid indianred;
    color: red;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.KDSeite-plugin {
    height: 100%;
    flex-grow: 1;
}

.kdseite-close-btn:hover {
    transform: scale(1.1);
    background-color: indianred;
    color: var(--bandel-sells-foreground);
}

.bs-new-customer {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    width: 100%;
    height: 100%;
    padding: var(--bandel-sells-main-inner-padding);
}

.bs-new-customer-title {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    color: var(--bandel-sells-turqoise);
}

.bs-new-customer-form {
    width: 100%;
    height: 100%;
    border: 2px solid var(--bandel-sells-turqoise);
    border-radius: 8px;
    padding: var(--bandel-sells-main-inner-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-new-customer-form-row {
    display: flex;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
    flex-grow: 1;
}

.bs-new-customer-form-item {
    width: 50%;
    position: relative
}

    .bs-new-customer-form-item > label {
        font-weight: bold;
        color: var(--bandel-sells-turqoise);
    }

    .bs-new-customer-form-item > input {
        background-color: transparent;
        border: 1px solid var(--bandel-sells-foreground);
        color: var(--bandel-sells-foreground);
        width: 100%;
        height: 48px;
        padding-inline: 8px;
        border-radius: 4px;
    }

    .bs-new-customer-form-item > select {
        background-color: transparent !important;
        border: 1px solid var(--bandel-sells-foreground);
        color: var(--bandel-sells-foreground);
        width: 100%;
        height: 48px;
        padding-inline: 8px;
        border-radius: 4px;
    }

        .bs-new-customer-form-item > select option {
            background-color: var(--bandel-sells-background);
            color: var(--bandel-sells-foreground);
        }

.bs-new-customer-street-suggestions-ul {
    position: absolute;
    bottom: -320%;
    height: 320%;
    width: 100%;
    overflow-y: auto;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0px 0px 20px 0px var(--bandel-sells-foreground);
}

.bs-new-customer-street-suggestions-li {
    padding-block: 8px;
    padding-inline: 16px;
    cursor: pointer;
}

    .bs-new-customer-street-suggestions-li:hover {
        background-color: var(--bandel-sells-light-grey);
    }

.bs-new-customer-form-item-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .bs-new-customer-form-item-with-icon > input {
        background-color: transparent;
        border: 1px solid var(--bandel-sells-foreground);
        color: var(--bandel-sells-foreground);
        flex-grow: 1;
        height: 48px;
        padding-inline: 8px;
        border-radius: 4px;
    }

.bs-new-customer-form-item-get-number-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--bandel-sells-turqoise);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

    .bs-new-customer-form-item-get-number-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-turqoise);
        color: var(--bandel-sells-foreground);
    }

.bs-new-customer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: bold;
}

.table {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
}

.bs-artikel {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    width: 100%;
    height: 100%;
    padding: var(--bandel-sells-main-inner-padding);
}

.bs-artikel-tabs {
    display: flex;
    gap: var(--bandel-sells-main-inner-padding);
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
}

.bs-artikel-tab {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--bandel-sells-white);
    transition: background-color 0.3s, color 0.3s;
    width: calc(100% / 6);
}

    .bs-artikel-tab::selection {
        outline: none;
        border: none;
        color: var(--bandel-sells-black);
    }

.bs-artikel-tab-dark-blue {
    background-color: var(--bandel-sells-dark-blue);
}

.bs-artikel-tab-purple {
    background-color: var(--bandel-sells-purple);
}

.bs-artikel-tab-medium-blue {
    background-color: var(--bandel-sells-medium-blue);
}

.bs-artikel-tab-pink {
    background-color: var(--bandel-sells-pink);
}

.bs-artikel-tab-light-blue {
    background-color: var(--bandel-sells-light-blue);
}

.bs-artikel-tab-turqoise {
    background-color: var(--bandel-sells-turqoise);
}

.bs-artikel-tab:hover {
    opacity: 70%;
}

.bs-artikel-tab-active {
    color: var(--bandel-sells-black);
}

.content {
    display: block;
}

    .content.active {
        display: block !important;
    }


.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    margin-top: 20px;
}

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.itembild {
    transition: transform 0.3s ease;
}

.itembildbig {
    z-index: 100;
    transition: transform 0.3s ease;
    transform: scale(2.5) translateY(54px);
    box-shadow: 0px 0px 300px 200px rgba(0,0,0,0.75);
}

.itembildbig-right200 {
    z-index: 100;
    transition: transform 0.3s ease;
    transform: scale(2.5) translateY(54px) translateX(200px);
    box-shadow: 0px 0px 300px 200px rgba(0,0,0,0.75);
}

.bs-artikel-tab-content {
    height: calc(100% - 56px);
}

.bs-artikel-container {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-artikel-sidebar {
    width: 25%;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    height: 100%;
    overflow-y: auto;
}

.bs-artikel-sidebar-buttons {
    margin-block: var(--bandel-sells-main-inner-padding);
    display: flex;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-artikel-sidebar-select {
    background-color: transparent;
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 4px;
    color: var(--bandel-sells-foreground);
    height: 40px;
    width: 32%;
    cursor: pointer;
    padding-inline: 8px;
}

    .bs-artikel-sidebar-select > option {
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
    }

.bs-artikel-sidebar-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 4px;
    height: 40px;
    flex-grow: 1;
    padding-inline: 8px;
}

    .bs-artikel-sidebar-checkbox > input {
        background-color: transparent;
        border: 1px solid var(--bandel-sells-foreground);
        cursor: pointer;
    }

.bs-artikel-sidebar-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: calc(100% - 112px);
    overflow-y: auto;
}

    .dragging {
        opacity: 0.5;
        background-color: #e0e0e0;
    }

.bs-artikel-sidebar-li {
    display: flex;
    gap: 8px;
    padding: 8px;
    background-color: var(--bandel-sells-medium-blue);
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.bs-artikel-sidebar-li-different {
    background-color: var(--bandel-sells-light-blue);
}

.bs-artikel-sidebar-li:hover {
    opacity: 70%;
}

.bs-artikel-sidebar-li > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.bs-artikel-sidebar-li-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bs-artikel-sidebar-li-info-item > p:first-of-type {
    font-weight: bold;
    margin-bottom: 4px;
}

.bs-artikel-main-content {
    height: 100%;
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-artikel-main-content-header {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bs-artikel-backtomain-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    height: 40px;
    padding-inline: 16px;
}

.bs-artikel-zumwarenkorb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    height: 40px;
    padding-inline: 16px;
}

.bs-artikel-main-content-info {
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.bs-artikel-main-content-info-general {
    height: 45%;
    display: flex;
    gap: 8px;
}

    .bs-artikel-main-content-info-general > img {
        height: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
    }

.bs-artikel-main-content-info-items-wrapper {
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    flex-grow: 1;
    padding: var(--bandel-sells-main-inner-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bs-artikel-main-content-info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

    .bs-artikel-main-content-info-item > p:first-of-type {
        font-weight: bold;
        color: var(--bandel-sells-dark-blue);
        width: 130px;
    }

    .bs-artikel-main-content-info-item > div:first-of-type {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-grow: 1;
        justify-content: end;
    }

.bs-artikel-main-content-info-item-show-art-dropdown {
    cursor: pointer;
}

.bs-artikel-main-content-info-item-dropdown {
    position: absolute;
    top: 40px;
    left: 0;
    transform: translate(50%);
    border: 2px solid var(--bandel-sells-dark-blue);
    box-shadow: 0px 0px 10px 0px var(--bandel-sells-foreground);
    border-radius: 8px;
    background-color: var(--bandel-sells-background);
    z-index: 20;
}

.bs-artikel-main-content-info-item-dropdown-header {
    display: flex;
    gap: 8px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-light-gray);
    font-weight: bold;
    padding: 8px;
    font-size: 14px;
}

    .bs-artikel-main-content-info-item-dropdown-header > p:last-of-type {
        flex-grow: 1;
        text-align: end;
    }

.bs-artikel-main-content-info-item-dropdown-ul {
    max-height: 240px;
    overflow-y: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .bs-artikel-main-content-info-item-dropdown-ul > li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        padding: 8px;
        cursor: pointer;
    }

        .bs-artikel-main-content-info-item-dropdown-ul > li:nth-child(2n+1) {
            background-color: var(--bandel-sells-dark-blue-transparent);
        }

        .bs-artikel-main-content-info-item-dropdown-ul > li:hover {
            opacity: 70%;
        }

.bs-artikel-main-content-info-item-bezeichnung {
    display: block !important;
}

    .bs-artikel-main-content-info-item-bezeichnung > p {
        font-size: 14px;
    }

.bs-artikel-main-content-stats-item-wrappers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.bs-artikel-main-content-stats-item-wrapper1 {
    border: 2px solid var(--bandel-sells-light-gray);
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 264px;
}

.bs-artikel-main-content-stats-item {
    padding: 16px;
}

.gesamt-verfugbar {
    background-color: var(--bandel-sells-light-grey);
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.gesamt-verfugbar-red {
    background-color: lightcoral;
}

.eigenlager {
    background-color: var(--bandel-sells-light-grey);
    font-weight: bold;
}

.eigenlager-red {
    background-color: lightcoral;
}

.davon-im-laden {
    font-weight: bold;
}

.davon-im-laden-red {
    background-color: lightcoral;
}

.davon-im-laden-green {
    background-color: green;
}

.davon-pickbar {
    font-weight: bold;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.davon-pickbar-red {
    background-color: lightcoral;
}

.davon-pickbar-green {
    background-color: green;
    cursor: pointer;
}

.bs-artikel-main-content-stats-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.bs-artikel-main-content-stats-item2 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 30%;
}

    .bs-artikel-main-content-stats-item2:nth-of-type(2) {
        justify-content: center;
    }

    .bs-artikel-main-content-stats-item2:last-of-type {
        justify-content: end;
    }

    .bs-artikel-main-content-stats-item2 > p:first-of-type {
        color: var(--bandel-sells-purple);
    }

.bs-artikel-main-content-stats-item > p:nth-of-type(2) {
    flex-grow: 1;
    text-align: end;
}

.bs-artikel-main-content-stats-items-wrapper2 {
    border: 2px solid var(--bandel-sells-purple);
    border-radius: 8px;
    padding-inline: 8px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs-artikel-main-content-stats-item-pickbar-dropdown {
    position: absolute;
    top: 64px;
    left: 0;
    transform: translate(12.5%);
    border: 2px solid var(--bandel-sells-green);
    box-shadow: 0px 0px 10px 0px var(--bandel-sells-foreground);
    border-radius: 8px;
    background-color: var(--bandel-sells-background);
    z-index: 20;
    width: 80%;
}

.bs-artikel-main-content-info-item-pickbar-dropdown-ul {
    max-height: 240px;
    overflow-y: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


    .bs-artikel-main-content-info-item-pickbar-dropdown-ul > li {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
    }

        .bs-artikel-main-content-info-item-pickbar-dropdown-ul > li > p:first-of-type {
            width: 71px;
        }

        .bs-artikel-main-content-info-item-pickbar-dropdown-ul > li > p:last-of-type {
            flex-grow: 1;
            text-align: end;
        }

.bs-artikel-main-content-info-tables-wrapper {
    display: flex;
    gap: 8px;
    height: 45%;
}

.bs-artikel-main-content-info-table {
    width: 50%;
    border: 2px solid var(--bandel-sells-medium-blue);
    border-radius: 8px;
}

    .bs-artikel-main-content-info-table:first-of-type {
        width: 25%;
    }

    .bs-artikel-main-content-info-table:last-of-type {
        width: 25%;
    }

.bs-artikel-main-content-info-table-header {
    background-color: var(--bandel-sells-medium-blue);
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.bs-artikel-main-content-info-table-ul {
    height: calc(100% - 32px);
    overflow-y: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.bs-artikel-main-content-info-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    font-size: 14px;
    gap: 8px;
}

    .bs-artikel-main-content-info-table-li:nth-of-type(2n+1) {
        background-color: var(--bandel-sells-light-grey);
    }

.bs-orders-container {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    padding: var(--bandel-sells-main-inner-padding);
    height: 100%;
}

.bs-orders-results {
    display: flex;
    flex-direction: column;
    height: calc(100% - 48px);
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid var(--bandel-sells-light-blue);
}

.bs-orders-results-header {
    background-color: var(--bandel-sells-light-blue);
    padding: var(--bandel-sells-main-inner-padding);
    font-weight: bold;
    color: var(--bandel-sells-foreground);
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .bs-orders-results-header > p:first-of-type {
        width: 300px;
    }

    .bs-orders-results-header > p:nth-of-type(2) {
        width: 65px;
    }

    .bs-orders-results-header > p:nth-of-type(3) {
        width: 120px;
    }

    .bs-orders-results-header > p:nth-of-type(4) {
        width: 180px;
    }


    .bs-orders-results-header > p:last-of-type {
        width: 40px;
        text-align: center;
    }

.bs-orders-results-ul {
    display: flex;
    flex-direction: column;
    height: calc(100% - 48px);
    overflow-y: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.bs-orders-results-li {
    display: flex;
    align-items: center;
    color: var(--bandel-sells-foreground);
    justify-content: space-between;
    padding: var(--bandel-sells-main-inner-padding);
}

    .bs-orders-results-li:nth-of-type(2n+1) {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-orders-results-li > p:first-of-type {
        width: 300px;
    }

    .bs-orders-results-li > p:nth-of-type(2) {
        width: 65px;
    }

    .bs-orders-results-li > p:nth-of-type(3) {
        width: 120px;
    }

    .bs-orders-results-li > p:nth-of-type(4) {
        width: 180px;
    }

    .bs-orders-results-li > div {
        width: 40px;
    }

.bs-orders-results-li-edit-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--bandel-sells-turqoise);
}

    .bs-orders-results-li-edit-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-turqoise);
        color: var(--bandel-sells-white);
    }

.bs-orders-edit-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 298px 200px rgba(0,0,0,0.75);
    height: 90%;
    width: 95%;
}

.show-edit-modal {
    opacity: 1;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hide-edit-modal {
    opacity: 0;
    z-index: -10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.5);
    transition: all 0.3s ease-in-out;
}

.bs-orders-modal-belegpositionen-header {
    padding: 8px;
}

.bs-new-order-container {
    padding: var(--bandel-sells-main-inner-padding);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-new-order-container-row {
    display: flex;
    gap: var(--bandel-sells-main-inner-padding);
    height: 50%;
    width: 100%;
}

.bs-new-order-kundenkonto {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-turqoise);
    border-radius: 8px;
    gap: 8px;
}

.bs-new-order-kundenkonto-header {
    background-color: var(--bandel-sells-turqoise);
    padding: 8px;
    font-weight: bold;
    font-size: 1.5rem;
}

.bs-new-order-form-kundenkonto {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block-end: 8px;
    padding-inline: 8px;
}

.bs-new-order-form-kundenkonto-row {
    display: flex;
    gap: 8px;
}

.bs-new-order-form-kundenkonto-input-item-kundenkonto {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .bs-new-order-form-kundenkonto-input-item-kundenkonto > input {
        height: 48px;
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
    }

    .bs-new-order-form-kundenkonto-input-item-kundenkonto input:focus {
        border-width: 1px !important;
        border-color: var(--bandel-sells-turqoise) !important;
    }

.bs-new-order-form-kundenkonto-input-item-kundenkonto-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bandel-sells-turqoise);
    transition: all 0.3s ease-in-out;
}

    .bs-new-order-form-kundenkonto-input-item-kundenkonto-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-turqoise);
        color: var(--bandel-sells-foreground);
    }

.bs-new-order-form-kundenkonto-input-item {
    display: flex;
    flex-direction: column;
    width: 50%;
}

    .bs-new-order-form-kundenkonto-input-item label {
        margin: 0;
    }

    .bs-new-order-form-kundenkonto-input-item input {
        height: 48px;
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
        flex-grow: 1;
    }

        .bs-new-order-form-kundenkonto-input-item input:focus {
            border-width: 1px !important;
            border-color: var(--bandel-sells-turqoise) !important;
        }


    .bs-new-order-form-kundenkonto-input-item select {
        height: 48px;
        background-color: transparent !important;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
        flex-grow: 1;
    }

    .bs-new-order-form-kundenkonto-input-item > select option {
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
    }

.bs-new-order-belegpositionen {
    width: 50%;
    height: 100%;
    border: 2px solid var(--bandel-sells-medium-blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.bs-new-order-belegpositionen-warenkorb {
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
}

.bs-new-order-belegpositionen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline-start: 8px;
    background-color: var(--bandel-sells-medium-blue);
    color: var(--bandel-sells-foreground);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .bs-new-order-belegpositionen-header > p {
        font-weight: bold;
        font-size: 1.5rem;
    }

.bs-new-order-belegpositionen-header-btn {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-weight: bold;
}

    .bs-new-order-belegpositionen-header-btn:hover {
        transform: scale(1.05);
    }

.icon40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon30 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-new-order-belegpositionen-header-icon {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.bs-new-order-belegpositionen-warenkorb-header {
    display: flex;
    justify-content: space-between;
    padding-inline: 8px;
    align-items: center;
    gap: 8px;
    background-color: var(--bandel-sells-medium-blue);
    color: var(--bandel-sells-background);
    font-weight: bold;
}

.bs-new-order-belegpositionen-warenkorb-header-artikel {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-new-order-belegpositionen-warenkorb-header-artikel-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-new-order-belegpositionen-warenkorb-header-artikel-icon:hover {
        transform: scale(1.1);
    }

.bs-new-order-belegpositionen-warenkorb-header > p:first-of-type {
    min-width: 48px;
    text-align: center;
}

.bs-new-order-belegpositionen-warenkorb-ul {
    height: calc(100% - 90px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-block: 8px;
}

.bs-new-order-belegpositionen-warenkorb-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
    height: 80px;
}


    .bs-new-order-belegpositionen-warenkorb-li > img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
    }

.bs-new-order-belegpositionen-warenkorb-li-menge {
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .bs-new-order-belegpositionen-warenkorb-li-menge > input {
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: none;
        padding-inline: 4px;
        text-align: center;
        max-width: 100%;
        font-size: 14px;
    }

.bs-new-order-belegpositionen-warenkorb-li-artikel {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-grow: 1;
}

    .bs-new-order-belegpositionen-warenkorb-li-artikel > p:first-of-type {
        font-weight: bold;
        margin-bottom: 4px;
    }

    .bs-new-order-belegpositionen-warenkorb-li-artikel > p:nth-of-type(2) {
        opacity: 70%;
    }

    .bs-new-order-belegpositionen-warenkorb-li-artikel > input {
        height: 48px;
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
    }

.bs-new-order-belegpositionen-warenkorb-li-price {
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .bs-new-order-belegpositionen-warenkorb-li-price > div {
        width: 96px;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 4px;
    }

        .bs-new-order-belegpositionen-warenkorb-li-price > div > input {
            background-color: transparent;
            color: var(--bandel-sells-foreground);
            border: none;
            padding-inline: 4px;
            text-align: end;
            max-width: calc(100% - 24px);
            font-size: 14px;
        }

.bs-new-order-belegpositionen-warenkorb-footer {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    padding: 8px;
}

.bs-new-order-belegpositionen-warenkorb-footer-item {
    display: flex;
    justify-content: space-between;
}

    .bs-new-order-belegpositionen-warenkorb-footer-item > p {
        font-weight: bold;
        color: var(--bandel-sells-medium-blue);
    }

.bs-new-order-rechnungsdaten {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    gap: 8px;
}

.bs-new-order-rechnungsdaten-header {
    display: flex;
    justify-content: space-between;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    align-items: center;
    padding-inline-start: 8px;
    font-size: 1.5rem;
    font-weight: bold;
}

.bs-new-order-rechnungsdaten-header-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-new-order-rechnungsdaten-header-icon:hover {
        transform: scale(1.1);
    }

.bs-new-order-rechnungsdaten-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    height: 100%;
    padding-block-end: 8px;
    padding-inline: 8px;
}

.bs-new-order-rechnungsdaten-form-row {
    display: flex;
    gap: 8px;
}

.bs-new-order-rechnungsdaten-form-input-item {
    display: flex;
    flex-direction: column;
    width: 50%;
}

    .bs-new-order-rechnungsdaten-form-input-item > label {
        margin: 0;
    }

    .bs-new-order-rechnungsdaten-form-input-item > input {
        height: 48px;
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
        flex-grow: 1;
    }

    .bs-new-order-rechnungsdaten-form-input-item input:focus {
        border-width: 1px !important;
        border-color: var(--bandel-sells-turqoise) !important;
    }


    .bs-new-order-rechnungsdaten-form-input-item select {
        height: 48px;
        background-color: transparent !important;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
    }

    .bs-new-order-rechnungsdaten-form-input-item > select option {
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
    }

.bs-new-order-lieferdaten {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
}

.bs-new-order-lieferdaten-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline-end: 8px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    font-weight: bold;
    font-size: 1.5rem;
}

.bs-new-order-lieferdaten-header-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out
}

    .bs-new-order-lieferdaten-header-icon:hover {
        transform: scale(1.1);
    }

.bs-new-order-form-lieferdaten {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    height: 100%;
    padding-block-end: 8px;
    padding-inline: 8px;
}

.bs-new-order-form-lieferdaten-row {
    display: flex;
    gap: 8px;
    justify-content: space-between
}

.bs-new-order-form-lieferdaten-input-item {
    display: flex;
    flex-direction: column;
    width: 50%;
}

    .bs-new-order-form-lieferdaten-input-item > label {
        margin: 0;
    }

    .bs-new-order-form-lieferdaten-input-item > input {
        height: 48px;
        background-color: transparent;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
        flex-grow: 1;
    }

    .bs-new-order-form-lieferdaten-input-item input:focus {
        border-width: 1px !important;
        border-color: var(--bandel-sells-turqoise) !important;
    }


    .bs-new-order-form-lieferdaten-input-item select {
        height: 48px;
        background-color: transparent !important;
        color: var(--bandel-sells-foreground);
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 4px;
        padding-inline: 8px;
    }

    .bs-new-order-form-lieferdaten-input-item > select option {
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
    }

.bs-new-order-street {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-new-order-street-icon {
    color: var(--bandel-sells-dark-blue);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    .bs-new-order-street-icon:hover {
        background-color: var(--bandel-sells-dark-blue);
        color: var(--bandel-sells-white);
        transform: scale(1.1);
    }

.bs-new-order-street > input {
    height: 48px;
    background-color: transparent;
    color: var(--bandel-sells-foreground);
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 4px;
    padding-inline: 8px;
    flex-grow: 1;
}

.bs-new-order-street input:focus {
    border-width: 1px !important;
    border-color: var(--bandel-sells-turqoise) !important;
}


.bs-new-order-street select {
    height: 48px;
    background-color: transparent !important;
    color: var(--bandel-sells-foreground);
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 4px;
    padding-inline: 8px;
    flex-grow: 1;
}

.bs-new-order-street > select option {
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
}

.bs-new-order-form-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bs-kasse-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    padding: var(--bandel-sells-main-inner-padding);
}

.bs-kasse-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    height: 8%;
    max-height: 47px;
}

.bs-kasse-header-tabs-btn {
    width: 50%;
    height: 100%;
    border: none;
    font-weight: bold;
    font-size: 1.25rem;
    background-color: var(--bandel-sells-medium-gray);
    color: var(--bandel-sells-white);
}

    .bs-kasse-header-tabs-btn:hover {
        opacity: 0.8;
        color: var(--bandel-sells-white);
    }

.bs-kasse-header-tabs-btn-active {
    background-color: var(--bandel-sells-dark-blue);
}

.bs-kasse-main {
    height: 92%;
}

.bs-kasse-offen-container {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    height: 100%;
}

.bs-kasse-offen-header {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 10%;
}

.bs-kasse-offen-refresh-icon {
    color: var(--bandel-sells-dark-blue);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-kasse-offen-refresh-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-dark-blue);
        color: var(--bandel-sells-light-grey);
    }

.bs-kasse-offen-table {
    height: 90%;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.bs-kasse-offen-table-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    padding-block: var(--bandel-sells-main-inner-padding);
    padding-inline: 4px;
    font-weight: bold;
}

    .bs-kasse-offen-table-header > p:first-of-type {
        width: 200px;
    }

    .bs-kasse-offen-table-header > p:nth-of-type(2) {
        width: 65px;
    }

    .bs-kasse-offen-table-header > p:nth-of-type(3) {
        width: 170px;
    }

    .bs-kasse-offen-table-header > p:nth-of-type(4) {
        width: 210px;
    }

    .bs-kasse-offen-table-header > p:nth-of-type(5) {
        width: 140px;
        text-align: end;
    }

.bs-kasse-offen-table-ul {
    overflow-y: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.bs-kasse-offen-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
}

    .bs-kasse-offen-table-li:nth-of-type(2n) {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-kasse-offen-table-li > p:first-of-type {
        width: 200px;
    }

    .bs-kasse-offen-table-li > p:nth-of-type(2) {
        width: 65px;
    }

    .bs-kasse-offen-table-li > p:nth-of-type(3) {
        width: 170px;
    }

    .bs-kasse-offen-table-li > p:nth-of-type(4) {
        width: 210px;
    }

.bs-kasse-offen-table-li-option-btn {
    background-color: var(--bandel-sells-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--bandel-sells-white);
    transition: all 0.3s ease-in-out;
    width: 140px;
}

    .bs-kasse-offen-table-li-option-btn:hover {
        filter: brightness(1.2);
        color: var(--bandel-sells-white);
        transform: scale(1.02)
    }

.siteswitch-container {
    display: flex;
    width: 100%;
}

.siteswitch-box {
    width: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
}

.siteswitch-gray-box {
    background-color: lightgray;
}

.siteswitch-blue-box {
    background-color: lightblue;
}

.bs-kasse-in-bearbeitung-container {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    height: 100%;
}

.bs-kasse-in-bearbeitung-refresh-icon {
    color: var(--bandel-sells-dark-blue);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
}

    .bs-kasse-in-bearbeitung-refresh-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-dark-blue);
        color: var(--bandel-sells-light-grey);
    }

.bs-kasse-in-bearbeitung-tables {
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    font-size: 14px;
}

.bs-kasse-in-bearbeitung-beleg-table {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    height: 60%;
}

.bs-kasse-in-bearbeitung-beleg-table-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-block: var(--bandel-sells-main-inner-padding);
    padding-inline: 6px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    font-weight: bold;
}


    .bs-kasse-in-bearbeitung-beleg-table-header > p:first-of-type {
        width: 72px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(2) {
        width: 115px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(3) {
        width: 85px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(4) {
        flex-grow: 1;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(5) {
        width: 81px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(6) {
        width: 150px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(7) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(8) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(9) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-header > p:nth-of-type(10) {
        width: 93px;
    }

.bs-kasse-in-bearbeitung-beleg-table-ul {
    overflow-y: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 100%;
}

.bs-kasse-in-bearbeitung-beleg-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 4px;
    color: black;
    filter: brightness(0.8);
    cursor: pointer;
}

    .bs-kasse-in-bearbeitung-beleg-table-li:hover {
        opacity: 0.8;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:first-of-type {
        width: 72px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(2) {
        width: 115px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(3) {
        width: 85px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(4) {
        flex-grow: 1;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(5) {
        width: 81px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(6) {
        width: 150px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(7) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(8) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(9) {
        width: 93px;
    }

    .bs-kasse-in-bearbeitung-beleg-table-li > p:nth-of-type(10) {
        width: 93px;
    }

.bs-kasse-in-bearbeitung-header {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 10%;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-medium-blue);
    border-radius: 8px;
    height: 40%;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-block: var(--bandel-sells-main-inner-padding);
    padding-inline: 6px;
    background-color: var(--bandel-sells-medium-blue);
    color: var(--bandel-sells-white);
    font-weight: bold;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-li-checkboxes {
    width: 70px;
    display: flex;
    gap: 4px;
}

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li-checkboxes > span {
        width: 13px;
    }

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(1) {
    width: 45px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(2) {
    width: 70px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(3) {
    flex-grow: 1;
    max-width: 400px;
    text-overflow: ellipsis;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(4) {
    width: 51px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(6) {
    width: 150px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(7) {
    width: 150px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(8) {
    width: 120px;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-header > p:nth-of-type(9) {
    width: 120px;
}



.bs-kasse-in-bearbeitung-beleg-positionen-table-ul {
    overflow-y: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 100%;
}

.bs-kasse-in-bearbeitung-beleg-positionen-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 6px;
    color: black;
    filter: brightness(0.8);
}

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(1) {
        width: 45px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(2) {
        width: 70px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(3) {
        flex-grow: 1;
        max-width: 400px;
        text-overflow: ellipsis;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(4) {
        width: 51px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(5) {
        width: 150px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(6) {
        width: 150px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(7) {
        width: 120px;
    }

    .bs-kasse-in-bearbeitung-beleg-positionen-table-li > p:nth-of-type(8) {
        width: 120px;
    }

.bs-gh-plugin-iframe {
    height: 100%;
    width: 100%;
    border: none;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: inset 0px 0px 8px 0px var(--bandel-sells-dark-blue);
    border-radius: 8px;
    overflow-y: scroll;
    padding: var(--bandel-sells-main-inner-padding);
}


.bs-gh-plugin-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    background-color: var(--bandel-sells-background);
}

    .bs-gh-plugin-container * {
        font-size: 13px;
    }

.bs-gh-plugin-container-header {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bs-gh-plugin-search {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 4px;
    padding-inline: 8px;
    padding-block: 4px;
    color: var(--bandel-sells-foreground);
}

.bs-gh-plugin-header-letzte-kontakt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-gh-plugin-under-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

    .bs-gh-plugin-under-search * {
        font-size: 14px;
    }

.bs-gh-plugin-under-search-btn {
    background-color: lightgray;
    font-size: 15px;
    text-decoration: none;
    color: black;
    display: flex;
    gap: 4px;
    align-items: center;
    padding-inline: 8px;
    border-radius: 4px;
}

.bs-gh-plugin-under-search-form {
    background-color: transparent;
    color: var(--bandel-sells-foreground);
    flex-grow: 1;
}

    .bs-gh-plugin-under-search-form:focus {
        background-color: transparent;
        color: var(--bandel-sells-foreground);
    }

select {
    background-color: transparent !important;
    color: var(--bandel-sells-foreground) !important;
}

option {
    background-color: var(--bandel-sells-background) !important;
    color: var(--bandel-sells-foreground) !important;
}

.bs-gh-plugin-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
    flex-grow: 1;
}

.bs-gh-plugin-main-ld-kd {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bs-gh-plugin-ul1 {
    border-radius: 6px;
    border: 2px solid var(--bandel-sells-light-blue);
}

.bs-gh-plugin-li1 {
    display: flex;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
    color: var(--bandel-sells-foreground);
    padding: 4px;
}

    .bs-gh-plugin-li1:first-of-type {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .bs-gh-plugin-li1:last-of-type {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .bs-gh-plugin-li1:nth-of-type(2n) {
        background-color: var(--bandel-sells-light-blue);
    }

    .bs-gh-plugin-li1 > p:first-of-type {
        font-weight: bold;
        width: 20%;
    }

.bs-gh-plugin-ul2 {
    border-radius: 6px;
    border: 2px solid var(--bandel-sells-light-grey);
}

.bs-gh-plugin-li2 {
    display: flex;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
    color: var(--bandel-sells-foreground);
    padding: 4px;
}

    .bs-gh-plugin-li2:first-of-type {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .bs-gh-plugin-li2:last-of-type {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .bs-gh-plugin-li2:nth-of-type(2n) {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-gh-plugin-li2 > p:first-of-type {
        font-weight: bold;
        width: 20%;
    }

.bs-gh-plugin-main-belegdaten {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
}

.bs-gh-plugin-ul3 {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow-y: auto;
}

.bs-gh-plugin-li3 {
    display: flex;
    align-items: center;
    gap: var(--bandel-sells-main-inner-padding);
    color: black;
    padding: 4px;
}

    .bs-gh-plugin-li3 > p:first-of-type {
        font-weight: bold;
        width: 20%;
    }

.bs-gh-plugin-sendung {
    display: flex;
    gap: var(--bandel-sells-main-inner-padding);
    align-items: center;
    padding: 4px;
}

.bs-gh-plugin-sendung1 {
    font-weight: bold;
    width: 20%;
}

.bs-gh-plugin-sendung2 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bs-gh-plugin-bottom-info-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 30%;
}

.bs-gh-plugin-bottom-info-table-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 16%;
}

.bs-gh-plugin-bottom-info-table-tab {
    flex-grow: 1;
    border: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--bandel-sells-light-blue);
    color: var(--bandel-sells-foreground);
    width: calc(100% / 4);
}

    .bs-gh-plugin-bottom-info-table-tab:hover {
        filter: brightness(1.4);
    }

.active-auswahl-tab {
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
}

.bs-gh-plugin-bottom-info-table-content {
    height: 84%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
}

.bs-gh-plugin-bottom-info-table-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    padding: 4px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    height: 20%;
}

    .bs-gh-plugin-bottom-info-table-header > p:last-of-type {
        flex-grow: 1;
        text-align: end;
    }

    .bs-gh-plugin-bottom-info-table-header > p:nth-of-type(2) {
        width: 90px;
    }

    .bs-gh-plugin-bottom-info-table-header > p:nth-of-type(3) {
        width: 220px;
    }

.bs-gh-plugin-bottom-info-table-ul {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.bs-gh-plugin-bottom-info-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-inline: 4px;
    padding-block: 8px;
    border-bottom: 1px solid var(--bandel-sells-dark-blue);
}

    .bs-gh-plugin-bottom-info-table-li:last-of-type {
        background-color: var(--bandel-sells-dark-blue);
        font-weight: bold;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .bs-gh-plugin-bottom-info-table-li > p:nth-of-type(2) {
        width: 90px;
    }

    .bs-gh-plugin-bottom-info-table-li > p:nth-of-type(3) {
        width: 220px;
    }

    .bs-gh-plugin-bottom-info-table-li > p:last-of-type {
        flex-grow: 1;
        text-align: end;
        display: flex;
        flex-direction: column
    }

.bs-gh-plugin-memo-beleg {
    height: 80%;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    padding: 4px;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 4px;
}

    .bs-gh-plugin-memo-beleg:focus {
        outline: none;
    }

.bs-gh-plugin-memo-beleg-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 20%;
}

.bs-gh-plugin-bottom-info-table-content-option-btns-row {
    display: flex;
    gap: 8px;
    flex-grow: 1;
}

    .bs-gh-plugin-bottom-info-table-content-option-btns-row:not(:nth-of-type(4)) > button {
        width: 50%;
        padding: 0;
    }

    .bs-gh-plugin-bottom-info-table-content-option-btns-row:last-of-type > button {
        width: calc(100% / 3);
        padding: 0;
    }

.bs-gh-plugin-belegoptionen-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    justify-content: center;
}

.bs-gh-plugin-belegoptionen-title {
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}

.bs-gh-plugin-belegoptionen-table {
    border: 2px solid var(--bandel-sells-medium-blue);
    border-radius: 8px;
    height: 50%;
}

.bs-gh-plugin-belegoptionen-table-header {
    background-color: var(--bandel-sells-medium-blue);
    color: var(--bandel-sells-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
    height: 10%;
}

    .bs-gh-plugin-belegoptionen-table-header > p {
        font-weight: bold;
        font-size: 1rem !important;
    }

        .bs-gh-plugin-belegoptionen-table-header > p:first-of-type {
            width: calc(100% / 3);
        }

        .bs-gh-plugin-belegoptionen-table-header > p:nth-of-type(2) {
            flex-grow: 1;
        }

.bs-gh-plugin-belegoptionen-table-ul {
    height: 90%;
    overflow-y: auto;
}

.bs-gh-plugin-belegoptionen-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

    .bs-gh-plugin-belegoptionen-table-li:nth-of-type(2n) {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-gh-plugin-belegoptionen-table-li > p:first-of-type {
        width: calc(100% / 3);
    }

    .bs-gh-plugin-belegoptionen-table-li > p:nth-of-type(2) {
        flex-grow: 1;
    }

.bs-gh-plugin-belegoptionen-anmerkung {
    height: 30%;
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    border: 2px solid var(--bandel-sells-medium-blue);
    font-size: 1rem;
    border-radius: 8px;
    padding: 8px;
}

    .bs-gh-plugin-belegoptionen-anmerkung:focus {
        outline: none;
    }

.bs-gh-plugin-meine-notizen-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    justify-content: space-between;
}

.bs-gh-plugin-meine-notizen-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.bs-gh-plugin-meine-notizen-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bs-gh-plugin-meine-notizen-input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .bs-gh-plugin-meine-notizen-input-field > label {
        margin: 0;
        font-weight: bold;
    }


    .bs-gh-plugin-meine-notizen-input-field > input, textarea {
        background-color: var(--bandel-sells-background);
        color: var(--bandel-sells-foreground);
        padding: 8px;
        border: 1px solid var(--bandel-sells-turqoise);
        border-radius: 8px;
    }

    .bs-gh-plugin-meine-notizen-input-field input:focus,
    .bs-gh-plugin-meine-notizen-input-field textarea:focus {
        outline: none;
    }

.bs-gh-plugin-meine-notizen-speichern-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.bs-gh-plugin-meine-notizen-list {
    height: 40%;
    border: 2px solid cadetblue;
    border-radius: 8px;
    padding: 8px;
}

.bs-gh-plugin-liefer-and-rechnung-daten-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-gh-plugin-liefer-and-rechnung-daten-row {
    display: flex;
    flex-direction: column;
    height: 40%;
    justify-content: space-evenly;
    align-items: center;
}

.bs-gh-plugin-liefer-and-rechnung-daten-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.bs-gh-plugin-liefer-and-rechnung-daten-table {
    width: 50%;
}

    .bs-gh-plugin-liefer-and-rechnung-daten-table td,
    .bs-gh-plugin-liefer-and-rechnung-daten-table th {
        border: 1px solid var(--bandel-sells-foreground);
        padding: 8px;
    }

        .bs-gh-plugin-liefer-and-rechnung-daten-table td > input {
            background-color: var(--bandel-sells-background);
            color: var(--bandel-sells-foreground);
            padding: 8px;
            border: none;
        }

            .bs-gh-plugin-liefer-and-rechnung-daten-table td > input:focus {
                outline: none;
            }

.bs-gh-plugin-artikelauskunft-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.bs-gh-plugin-artikelauskunft-form {
    max-height: 5%;
}

.bs-gh-plugin-artikelauskunft-main {
    flex-grow: 1;
}

.bs-gh-plugin-artikelauskunft-table {
    width: 100%;
    height: 95%;
}

    .bs-gh-plugin-artikelauskunft-table > tr > td {
        border: 1px solid var(--bandel-sells-foreground);
        padding-inline: var(--bandel-sells-main-inner-padding);
    }

        .bs-gh-plugin-artikelauskunft-table > tr > td:first-of-type {
            font-weight: bold;
        }

.bs-gh-plugin-buchungsdaten-container {
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
    height: 100%;
    width: 100%;
}

.bs-gh-plugin-buchungsdaten-header {
    height: 10%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-gh-plugin-buchungsdaten-main {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-gh-plugin-buchungsdaten-title {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.bs-gh-plugin-buchungsdaten-subtitle {
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.bs-gh-plugin-buchungsdaten-table {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    height: 90%;
}

.bs-gh-plugin-buchungsdaten-table-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
}

    .bs-gh-plugin-buchungsdaten-table-header > p:first-of-type {
        width: 85px;
    }

    .bs-gh-plugin-buchungsdaten-table-header > p:nth-of-type(2) {
        width: 90px;
    }

    .bs-gh-plugin-buchungsdaten-table-header > p:last-of-type {
        width: 70px;
    }

.bs-gh-plugin-buchungsdaten-table-li {
    display: flex;
    justify-content: space-between;
    padding: 8px;
}

    .bs-gh-plugin-buchungsdaten-table-li > p:first-of-type {
        width: 85px;
    }

    .bs-gh-plugin-buchungsdaten-table-li > p:nth-of-type(2) {
        width: 90px;
    }

    .bs-gh-plugin-buchungsdaten-table-li > p:last-of-type {
        width: 70px;
    }

.bs-gh-plugin-buchungsdaten-table-li-green {
    background-color: lawngreen;
    color: black;
}

.bs-webshop-container {
    padding: var(--bandel-sells-main-inner-padding);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
}

.user-garage-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 35px;
    max-height: 50px;
    padding-inline: 16px;
    padding-block: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    background: var(--bandel-sells-chats-light-green);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
    margin-left: 20px;
}

    .user-garage-btn:hover {
        filter: brightness(0.8);
    }

    .user-garage-btn > svg {
        color: white;
        width: 20px;
        height: 20px;
    }

.bs-webshop-form {
    max-height: 45px;
}

.bs-webshop-table {
    border: 2px solid var(--bandel-sells-dark-blue);
    border-radius: 8px;
    height: 93%;
    overflow-x: scroll;
}

.bs-webshop-table-header {
    height: 6%;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background-color: var(--bandel-sells-dark-blue);
    color: var(--bandel-sells-white);
    font-weight: bold;
}

    .bs-webshop-table-header > p:nth-of-type(1) {
        width: 63px;
    }

    .bs-webshop-table-header > p:nth-of-type(2) {
        width: 63px;
    }

    .bs-webshop-table-header > p:nth-of-type(3) {
        width: 85px;
    }

    .bs-webshop-table-header > p:nth-of-type(4) {
        width: 97px;
    }

    .bs-webshop-table-header > p:nth-of-type(5) {
        flex-grow: 1
    }

    .bs-webshop-table-header > p:nth-of-type(6) {
        width: 72px;
    }

    .bs-webshop-table-header > p:nth-of-type(7) {
        width: 80px;
        text-align: end;
    }


.bs-webshop-table-ul {
    height: 94%;
    overflow-y: auto;
}

.bs-webshop-table-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

    .bs-webshop-table-li:nth-of-type(2n) {
        background-color: var(--bandel-sells-light-grey);
    }

    .bs-webshop-table-li > p:nth-of-type(1) {
        width: 63px;
    }


    .bs-webshop-table-li > p:nth-of-type(2) {
        width: 63px;
    }

    .bs-webshop-table-li > p:nth-of-type(3) {
        width: 85px;
    }

    .bs-webshop-table-li > p:nth-of-type(4) {
        width: 97px;
    }

    .bs-webshop-table-li > p:nth-of-type(5) {
        flex-grow: 1;
    }

    .bs-webshop-table-li > p:nth-of-type(6) {
        width: 72px;
    }

    .bs-webshop-table-li > p:nth-of-type(7) {
        width: 80px;
        display: flex;
        justify-content: end;
    }

.bs-webshop-add-to-cart-icon {
    cursor: pointer;
    color: var(--bandel-sells-green);
    transition: all 0.3s ease-in-out;
}

    .bs-webshop-add-to-cart-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-green);
        color: var(--bandel-sells-white);
    }

.bs-admin-container {
    width: 100%;
    height: 100%;
    padding: var(--bandel-sells-main-inner-padding);
    display: flex;
    flex-direction: column;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-admin-title {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    height: 3%;
}

.bs-admin-table1 {
    height: 97%;
    border: 2px solid var(--bandel-sells-turqoise);
    border-radius: 8px;
}

.bs-admin-table1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: var(--bandel-sells-turqoise);
    color: var(--bandel-sells-white);
    font-weight: bold;
    height: 6%;
}

.bs-admin-table1-ul {
    height: 94%;
    overflow-y: auto;
}

.bs-admin-table1-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    gap: 8px;
}

.bs-admin-table2 {
    height: 88%;
    border: 2px solid var(--bandel-sells-turqoise);
    border-radius: 8px;
}

.bs-admin-table2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: var(--bandel-sells-turqoise);
    color: var(--bandel-sells-white);
    font-weight: bold;
    height: 6%;
}

.bs-admin-table2-ul {
    height: 94%;
    overflow-y: auto;
}

.bs-admin-table2-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    gap: 8px;
}

    .bs-admin-table2-li > select {
        width: 50%;
    }

.bs-chats-container {
    background-color: var(--bandel-sells-chats-background);
    width: 100%;
    height: 100%;
}

.bs-chats-header {
    display: flex;
    align-items: center;
    background-color: var(--bandel-sells-chats-header);
    color: var(--bandel-sells-chats-text-secondary);
    height: 6%;
}

.bs-chats-header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 336px;
    border-right: 1px solid var(--bandel-sells-chats-background-selected);
    padding: 10px 16px;
}

.bs-chats-header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 10px 16px;
}

.bs-chats-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bandel-sells-chats-text-secondary);
    color: var(--bandel-sells-chats-background);
}

.bs-chats-profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bs-chats-header-actions-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-chats-header-actions-icon:hover {
        transform: scale(1.1);
        background-color: var(--bandel-sells-chats-background-selected);
    }

.bs-chats-header-right-user-data {
    display: flex;
    align-items: center;
}

.bs-chats-header-right-user-info {
    margin-left: 1rem;
}

    .bs-chats-header-right-user-info > p:first-of-type {
        font-weight: bold;
        font-size: 1rem;
        color: var(--bandel-sells-chats-text-primary);
        margin-bottom: 4px;
    }

    .bs-chats-header-right-user-info > p:last-of-type {
        font-size: 13px;
    }

.bs-chats-header-right-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

    .bs-chats-header-right-actions > div {
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .bs-chats-header-right-actions > div:hover {
            transform: scale(1.1);
            background-color: var(--bandel-sells-chats-background-selected);
        }

.bs-chats-under-header {
    display: flex;
    height: 94%;
}

.bs-chats-under-header-left {
    width: 336px;
    height: 100%;
    border-right: 1px solid var(--bandel-sells-chats-background-selected);
    position: relative;
}

.bs-chats-under-header-left-search {
    display: flex;
    align-items: center;
    height: 50px;
    padding-inline-start: 12px;
    color: var(--bandel-sells-chats-text-secondary);
}

    .bs-chats-under-header-left-search > form {
        width: 282px;
        height: 35px;
        border-radius: 6px;
        background-color: var(--bandel-sells-chats-background-selected);
        color: var(--bandel-sells-chats-text-secondary);
        display: flex;
        align-items: center;
    }

        .bs-chats-under-header-left-search > form > div {
            width: 65px;
        }

            .bs-chats-under-header-left-search > form > div > div {
                width: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: 12px;
            }

        .bs-chats-under-header-left-search > form > input {
            background: transparent;
            font-size: 13px;
            border: none;
            color: var(--bandel-sells-chats-text-primary);
            flex-grow: 1;
        }

            .bs-chats-under-header-left-search > form > input::placeholder {
                color: var(--bandel-sells-chats-text-secondary);
            }

            .bs-chats-under-header-left-search > form > input:focus {
                outline: none;
            }

.bs-chats-under-header-ul {
    height: calc(100% - 50px);
    overflow-y: auto;
}

.bs-chats-under-header-li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding-left: 12px;
}

.bs-chats-under-header-li-selected {
    background-color: var(--bandel-sells-chats-background-selected);
}

.bs-chats-under-header-li:hover {
    background-color: var(--bandel-sells-chats-background-hover);
}

.bs-chats-under-header-li > div:first-of-type {
    width: 65px;
}

.bs-chats-list-profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bandel-sells-chats-text-secondary);
}

.bs-chats-list-info {
    height: 100%;
    flex-grow: 1;
    margin-right: 12px;
    border-bottom: 1px solid var(--bandel-sells-chats-background-hover);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bs-chats-under-header-li-status {
    color: var(--bandel-sells-chats-text-secondary);
    font-size: 14px;
}

.bs-chats-list-info > div:first-of-type {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.bs-chats-list-info > div:last-of-type {
    display: flex;
    justify-content: space-between;
    max-width: 246px;
}

.bs-chats-list-info > div > p:first-of-type {
    font-size: 17px;
    color: var(--bandel-sells-chats-text-primary);
}

.bs-chats-list-info > div > p:last-of-type {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--bandel-sells-chats-text-secondary);
    max-height: 12px;
}

.bs-chats-under-header-li-last-message {
    font-size: 12px;
    color: var(--bandel-sells-chats-text-secondary);
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-chats-under-header-li-notification-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--bandel-sells-chats-background);
    background-color: var(--bandel-sells-chats-light-green);
}

.bs-chats-under-header-right {
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bs-chats-main-chat {
    height: calc(100% - 64px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
}

.bs-chats-main-welcome-message {
    margin: auto;
    color: var(--bandel-sells-chats-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.bs-chats-main-chat-text-content {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 12px;
    height: 100%;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.bs-chats-main-chat-text-content-lower-height {
    height: calc(100% - 50px);
}

.bs-chat-main-chat-encryption-message {
    margin: 12px 24px;
    padding: 5px 12px 6px;
    color: #FFD279;
    font-size: 12px;
    background-color: var(--bandel-sells-chats-background-hover);
    text-align: center;
    border-radius: 6px;
}

.bs-chats-main-chat-text-content-grouped-by-date {
    margin-block: 24px;
    padding: 5px 12px 6px;
    width: fit-content;
    margin-inline: auto;
    color: var(--bandel-sells-chats-text-secondary);
    font-size: 12px;
    background-color: var(--bandel-sells-chats-background-hover);
    text-align: center;
    border-radius: 6px;
}

.bs-chat-main-chat-input {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bandel-sells-chats-header);
    color: var(--bandel-sells-chats-text-secondary);
    padding-inline: 12px;
}

.bs-chat-main-chat-input-form {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: 43px;
    border-radius: 6px;
    background-color: var(--bandel-sells-chats-background-selected);
    color: var(--bandel-sells-chats-text-secondary);
    margin-inline: 12px;
}

    .bs-chat-main-chat-input-form > input {
        background-color: transparent;
        border: none;
        color: var(--bandel-sells-chats-text-primary);
        flex-grow: 1;
        height: 100%;
    }

        .bs-chat-main-chat-input-form > input:focus {
            outline: none;
        }

        .bs-chat-main-chat-input-form > input::placeholder {
            color: var(--bandel-sells-chats-text-secondary);
        }

.bs-chat-main-chat-input > div:last-of-type {
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .bs-chat-main-chat-input > div:last-of-type:hover {
        transform: scale(1.1) rotate(40deg);
    }

.bs-chats-main-chat-received {
    padding: 6px 7px 8px 9px;
    background-color: var(--bandel-sells-chats-background-hover);
    color: var(--bandel-sells-chats-text-primary);
    font-size: 14px;
    max-width: 80%;
    border-radius: 6px;
    position: relative;
    margin: 2px 24px;
    width: fit-content;
}

    .bs-chats-main-chat-received > div > span:nth-of-type(2) {
        font-size: 11px;
        visibility: hidden;
    }

    .bs-chats-main-chat-received > p {
        margin-left: 4px;
        margin-right: 0;
        position: relative;
        float: right;
        margin-bottom: -5px;
        margin-top: -10px;
        font-size: 11px;
        color: var(--bandel-sells-chats-text-secondary);
    }

.bs-chats-received-first {
    position: absolute;
    top: -4px;
    left: -7px;
    width: 16px;
    height: 16px;
    color: var(--bandel-sells-chats-background-hover);
}

.bs-chats-main-chat-sent {
    padding: 6px 7px 8px 9px;
    background-color: var(--bandel-sells-chats-green);
    color: var(--bandel-sells-chats-text-primary);
    font-size: 14px;
    max-width: 80%;
    border-radius: 6px;
    position: relative;
    margin: 2px 24px;
    width: fit-content;
    align-self: end;
}

    .bs-chats-main-chat-sent:last-of-type::before {
        content: "I am the last";
        position: absolute;
        color: red;
        top: 0;
        right: 0;
    }

    .bs-chats-main-chat-sent > div > span:nth-of-type(1) {
        overflow-wrap: break-word;
        white-space: pre-wrap;
    }

    .bs-chats-main-chat-sent > div > span:nth-of-type(2) {
        font-size: 11px;
        visibility: hidden;
    }

    .bs-chats-main-chat-sent > p {
        margin-left: 4px;
        margin-right: 0;
        position: relative;
        float: right;
        margin-bottom: -5px;
        margin-top: -10px;
        font-size: 11px;
        color: var(--bandel-sells-chats-text-secondary);
    }

.bs-chats-sent-first {
    position: absolute;
    top: -4px;
    right: -7px;
    width: 16px;
    height: 16px;
    color: var(--bandel-sells-chats-green);
}

.bs-chats-new-chat {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    width: 336px;
    height: 100%;
    background-color: var(--bandel-sells-chats-background);
    border-right: 1px solid var(--bandel-sells-chats-background-hover);
}

.bs-new-chat-hide {
    opacity: 0;
    z-index: -10;
}

.bs-new-chat-show {
    opacity: 1;
    z-index: 10;
}

.bs-chats-new-chat-header {
    background-color: var(--bandel-sells-chats-header);
    color: var(--bandel-sells-chats-text-primary);
    display: flex;
    align-items: center;
    padding-inline: 12px;
    overflow: hidden;
}

    .bs-chats-new-chat-header > div:first-of-type {
        width: 65px;
        z-index: 20;
    }

.bs-chats-new-chat-main {
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.bs-chats-new-chat-search {
    width: 312px;
    height: 35px;
    border-radius: 6px;
    background-color: var(--bandel-sells-chats-background-selected);
    color: var(--bandel-sells-chats-text-primary);
    display: flex;
    align-items: center;
    margin: 6px 12px;
    transition: all 0.3s ease-in-out;
}

.bs-chats-new-chat-search-hide {
    opacity: 0;
    height: 0;
    margin: 0;
}

.bs-chats-new-chat-search-show {
    height: 35px;
    opacity: 1;
}

.bs-chats-new-chat-search > div {
    width: 65px;
}

    .bs-chats-new-chat-search > div > div {
        width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
    }

.bs-chats-new-chat-search > input {
    background: transparent;
    font-size: 13px;
    border: none;
    color: var(--bandel-sells-chats-text-secondary);
    flex-grow: 1;
}

    .bs-chats-new-chat-search > input::placeholder {
        color: var(--bandel-sells-chats-text-secondary);
    }

    .bs-chats-new-chat-search > input:focus {
        outline: none;
    }

.bs-chats-new-chat-main > p {
    color: var(--bandel-sells-chats-light-green);
    padding: 30px 0 15px 32px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.bs-chats-new-chat-ul {
    height: calc(100% - 106px);
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

    .bs-chats-new-chat-ul > p {
        padding-left: 32px;
        margin-block: 12px;
        color: var(--bandel-sells-chats-light-green);
    }

.bs-chats-messages-search-container {
    height: 50px;
    width: 100%;
    background-color: var(--bandel-sells-chats-background);
    transition: all 0.3s ease-in-out;
}





.bs-chats-messages-search {
    height: 35px;
    border-radius: 6px;
    background-color: var(--bandel-sells-chats-background-selected);
    color: var(--bandel-sells-chats-text-primary);
    display: flex;
    align-items: center;
    margin: 6px 12px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    z-index: 10;
    width: 95%;
}

    .bs-chats-messages-search > div {
        width: 65px;
    }

        .bs-chats-messages-search > div > div {
            width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
        }

    .bs-chats-messages-search > input {
        background: transparent;
        font-size: 13px;
        border: none;
        color: var(--bandel-sells-chats-text-primary);
        flex-grow: 1;
    }

        .bs-chats-messages-search > input::placeholder {
            color: var(--bandel-sells-chats-text-secondary);
        }

        .bs-chats-messages-search > input:focus {
            outline: none;
        }

.bs-chats-messages-search-show {
    opacity: 1;
    transform: translateY(0);
}

.bs-chats-messages-search-hide {
    height: 0px;
    opacity: 0;
    transform: translateY(-10);
}

.bs-chats-under-header-neue-gruppe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    opacity: 1;
    padding-left: 12px;
    transition: all 0.3s ease-in-out;
}

    .bs-chats-under-header-neue-gruppe:hover {
        background-color: var(--bandel-sells-chats-background-hover);
    }

    .bs-chats-under-header-neue-gruppe > div:first-of-type {
        width: 65px;
    }

    .bs-chats-under-header-neue-gruppe > p {
        height: 100%;
        flex-grow: 1;
        margin-right: 12px;
        border-bottom: 1px solid var(--bandel-sells-chats-background-hover);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.bs-chats-under-header-neue-gruppe-icon {
    width: 48px;
    height: 48px;
    opacity: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bandel-sells-chats-light-green);
    color: var(--bandel-sells-chats-text-primary);
    transition: all 0.3s ease-in-out;
}

.bs-chats-under-header-neue-gruppe-hide {
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

    .bs-chats-under-header-neue-gruppe-hide > div:first-of-type {
        width: 65px;
    }

    .bs-chats-under-header-neue-gruppe-hide > div > .bs-chats-under-header-neue-gruppe-icon {
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

.icon50 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bs-chats-new {
    width: 80%;
    transition: all 0.3s ease-in-out;
}

.bs-new-chat-mode-show {
    opacity: 1;
    transform: translate(0);
}

.bs-new-chat-mode-hide {
    width: 0;
    opacity: 0;
    transform: translateX(100px);
}

.bs-new-group-mode-show {
    opacity: 1;
    transform: translate(0);
}

.bs-new-group-mode-hide {
    width: 0;
    opacity: 0;
    transform: translateX(-400px);
}

.bs-new-group-next1-btn-show {
    opacity: 1;
    height: 100px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-chats-new-chat-ul-smaller {
    height: calc(100% - 240px);
    transition: all 0.3s ease-in-out;
}

.bs-new-group-next1-btn-hide {
    opacity: 0;
    height: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-new-group-users-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-inline: 12px;
    padding-block: 8px;
    max-height: 0;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.bs-new-group-users-container-hide {
    padding-block: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.bs-new-group-users-container-show {
    opacity: 1;
    max-height: 144px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-new-group-mode-next-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bandel-sells-chats-light-green);
    cursor: pointer;
    z-index: 20;
}

.bs-new-group-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.bs-new-group-user-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bandel-sells-chats-text-secondary);
    color: var(--bandel-sells-chats-text-primary);
}

.bs-new-group-user-remove {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

    .bs-new-group-user-remove:hover {
        cursor: pointer;
        background-color: var(--bandel-sells-chats-text-primary);
        color: var(--bandel-sells-chats-background);
    }

.bs-new-chat-kontakte-auf-bandel-hide {
    height: 0;
    padding: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.bs-new-chat-kontakte-auf-bandel-show {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.bs-chats-new-chat-ul-hide {
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.bs-new-group-mode-final {
    width: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bs-new-group-mode-final-show {
    opacity: 1;
    height: 100%;
}

.bs-new-group-mode-final-hide {
    opacity: 0;
    height: 0;
}

.bs-new-group-mode-final-bg-icon-container {
    width: 100%;
    height: 200px;
    margin: 28px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bs-new-group-mode-final-bg-icon {
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    background: var(--bandel-sells-chats-background-selected);
    color: var(--bandel-sells-chats-text-secondary);
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    border-radius: 50%;
}

.bs-new-group-mode-final-bg-icon-before {
    position: absolute;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .bs-new-group-mode-final-bg-icon-before > p {
        margin-top: 12px;
        text-align: center;
        font-size: 13px;
        color: var(--bandel-sells-chats-text-secondary);
        user-select: none;
    }

.bs-new-group-mode-final-form {
    display: flex;
    align-items: center;
    color: var(--bandel-sells-chats-text-secondary);
    border-bottom: 2px solid var(--bandel-sells-chats-text-secondary);
    width: 80%;
    margin: 32px;
}

.bs-new-group-mode-final-form-error {
    border-bottom: 2px solid red;
}

.bs-new-group-mode-final-form > input {
    background-color: var(--bandel-sells-chats-background);
    border: none;
    color: var(--bandel-sells-chats-text-primary);
    flex-grow: 1;
}

    .bs-new-group-mode-final-form > input:focus {
        outline: none;
    }

.bs-new-group-mode-final-form:focus-within {
    border-bottom: 2px solid var(--bandel-sells-chats-light-green);
}

.bs-new-group-mode-final-confirm-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bandel-sells-chats-light-green);
    cursor: pointer;
    z-index: 15;
    margin: 32px;
    cursor: pointer;
}

.bs-settings-container {
    width: 100%;
    height: 100%;
    padding: var(--bandel-sells-main-inner-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bs-settings-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem;
}

.bs-settings-main-content {
    flex-grow: 1;
    display: flex;
    width: 72%;
}

.bs-settings-main-content-column {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--bandel-sells-main-inner-padding);
}

.bs-settings-main-content-profile-picture {
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bandel-sells-chats-background-hover);
    color: var(--bandel-sells-chats-text-secondary);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    position: relative;
}

    .bs-settings-main-content-profile-picture > p {
        font-size: 8rem;
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }

    .bs-settings-main-content-profile-picture::before {
        content: "Klicken Sie hier, um Ihr Profilbild zu andern";
        text-align: center;
        font-weight: bold;
        position: absolute;
        width: 65%;
        font-size: 1.5rem;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.3s ease-in-out;
    }

    .bs-settings-main-content-profile-picture:hover > img {
        opacity: 0.2;
    }

    .bs-settings-main-content-profile-picture:hover > p {
        opacity: 0.2;
    }

    .bs-settings-main-content-profile-picture:hover::before {
        opacity: 1;
        transform: scale(1);
    }

.bs-settings-profile-picture-input {
    position: absolute;
    background: red;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.bs-settings-username {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.bs-settings-main-content-form {
    display: flex;
    width: 75%;
    aspect-ratio: 1;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 8px;
}

.bs-settings-main-content-form-inputs-wrapper {
    display: flex;
    flex-direction: column;
}

    .bs-settings-main-content-form-inputs-wrapper > label {
        font-weight: bold;
    }

    .bs-settings-main-content-form-inputs-wrapper:not(:nth-of-type(4)):not(:last-of-type) > input {
        background-color: transparent;
        border: 1px solid var(--bandel-sells-foreground);
        border-radius: 6px;
        height: 32px;
        color: var(--bandel-sells-foreground);
        padding-inline: 8px;
        color-scheme: var(--bandel-sells-datepicker-theme);
    }

    .bs-settings-main-content-form-inputs-wrapper:nth-of-type(4) {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        margin-block: 8px;
    }

        .bs-settings-main-content-form-inputs-wrapper:nth-of-type(4) > label {
            margin: 0;
        }

    .bs-settings-main-content-form-inputs-wrapper > input:focus {
        outline: none;
    }

.bs-settings-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
}

.bs-settings-profile-pic-modal {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    opacity: 0;
    width: 50%;
    height: 20%;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in-out;
}

.bs-settings-profile-pic-modal-show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 30;
}

.bs-settings-profile-pic-modal-hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: -30;
}

.bs-settings-profile-pic-modal > input {
    background: transparent;
    border: 1px solid var(--bandel-sells-foreground);
    border-radius: 6px;
    width: 80%;
    height: 32px;
    padding-inline: 8px;
    color: var(--bandel-sells-foreground);
}

.bs-settings-profile-pic-modal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.bs-settings-profile-pic-modal-close-icon {
    cursor: pointer;
    color: red;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 8px;
    right: 8px;
}

    .bs-settings-profile-pic-modal-close-icon:hover {
        transform: scale(1.1);
        background-color: indianred;
        color: var(--bandel-sells-white);
    }

.bs-settings-profile-picture {
    border-radius: 50%;
    height: 300px;
    aspect-ratio: 1;
    object-fit: cover;
}

.LinkSend-input {
    padding: 8px;
    margin: 8px 0;
    width: 60%;
    box-sizing: border-box;
}

.LinkSend-button {
    padding: 10px;
    margin: 8px 0;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .LinkSend-button:hover {
        background-color: #2980b9;
    }

#delayed-one {
    display: none;
}

.fadeButton {
    display: none;
}

.dropdown-email {
    position: absolute;
    display: inline-block;
    top: 2.5%;
    right: 51%;
    font-size: 12px;
}

.dropdown-select-email {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 7px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

    .dropdown-select-email:hover {
        border-color: #aaa;
    }

.dropdown-options-email {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 1000;
}

.dropdown-option-email {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

    .dropdown-option-email:hover {
        background-color: #f0f0f0;
    }

.fullscreen-modal-inner {
    width: 90%;
    height: 90%;
    position: relative;
}

.close-fullscreen-modal-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0;
    border: 2px solid lightcoral;
    color: lightcoral;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bandel-sells-background);
    user-select: none;
    transition: all 0.3s ease-in-out;
}

    .close-fullscreen-modal-btn:hover {
        background: lightcoral;
        color: white;
    }

.carousel-image-control-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.carousel-image-control-btn,
.carousel-image-control-zoom-minus,
.carousel-image-control-zoom-plus {
    display: flex;
    align-items: center;
    border: 1px solid var(--bandel-sells-medium-blue);
    border-radius: 6px;
    padding: 0.5rem;
    height: 32px;
    background: var(--bandel-sells-background);
    color: var(--bandel-sells-foreground);
    gap: 8px;
    border: 2px solid var(--bandel-sells-chats-background-selected);
    user-select: none;
    transition: all 0.3s ease-in-out;
}

.carousel-image-control-btn-active {
    background: var(--bandel-sells-medium-blue);
    color: white;
}

.carousel-image-control-zoom-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.carousel-image-control-zoom-plus {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.carousel-image-control-btn > svg {
    width: 14px;
    height: 14px;
}

.carousel-image-control-btn:hover,
.carousel-image-control-zoom-minus:hover,
.carousel-image-control-zoom-plus:hover {
    background: var(--bandel-sells-chats-background-selected);
}

.carousel-image-control-zoom {
    display: flex;
    align-items: center;
}

    .carousel-image-control-zoom > p {
        background: var(--bandel-sells-background);
        height: 32px;
        width: 72px;
        color: var(--bandel-sells-foreground);
        border-top: 2px solid var(--bandel-sells-chats-background-selected);
        border-bottom: 2px solid var(--bandel-sells-chats-background-selected);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        padding-inline: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-image-control-zoom > input:focus {
        outline: none;
    }

.carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.carousel-prev-button, .carousel-next-button {
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    background: var(--bandel-sells-medium-blue);
    border: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

    .carousel-prev-button:hover, .carousel-next-button:hover {
        filter: brightness(1.2);
        transform: scale(1.05);
    }

.carousel {
    position: relative;
    height: 100%;
    flex-grow: 1;
}

.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.close-button {
    display: block;
    margin: 10px auto;
}

.fullscreen-modal-inner-small {
    height: fit-content;
    width: 60%;
    justify-content: space-between
}

.scan-result-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

    .scan-result-title > p:first-of-type {
        font-weight: bold;
        font-size: 24px;
    }

.scan-result-body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.scan-result-column {
    width: 50%;
    border-radius: 8px;
}

    .scan-result-column:first-of-type {
        border: 2px solid var(--bandel-sells-dark-blue);
    }

    .scan-result-column:nth-of-type(2) {
        border: 2px solid var(--bandel-sells-medium-blue);
    }

.scan-result-column-left-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1rem;
    height: 32px;
    width: 100%;
    background: var(--bandel-sells-dark-blue);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.scan-result-column-list {
    height: calc(291px - 32px);
    overflow-y: auto;
}

.scan-result-column-right-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1rem;
    height: 32px;
    width: 100%;
    background: var(--bandel-sells-medium-blue);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.scan-result-column-list-item {
    height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

    .scan-result-column-list-item:nth-of-type(2n) {
        background: var(--bandel-sells-light-grey);
    }

    .scan-result-column-list-item > p:last-of-type {
        flex-grow: 1;
        text-align: end;
    }

.car-result-column-list {
    overflow-y: auto;
}

.car-result-column-right-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1rem;
    height: 32px;
    width: 100%;
    background: var(--bandel-sells-medium-blue);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.car-result-column-list-item {
    height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    font-size: 12px;
}

    .car-result-column-list-item:nth-of-type(2n) {
        background: var(--bandel-sells-light-grey);
    }

    .car-result-column-list-item:nth-of-type(1) {
        color: var(--bandel-sells-pink);
    }

        .car-result-column-list-item:nth-of-type(1):hover {
            background-color: var(--bandel-sells-pink);
            color: var(--bandel-sells-foreground);
        }

    .car-result-column-list-item:nth-of-type(2) {
        color: var(--bandel-sells-pink);
    }

        .car-result-column-list-item:nth-of-type(2):hover {
            background-color: var(--bandel-sells-pink);
            color: var(--bandel-sells-foreground);
        }

    .car-result-column-list-item > p:last-of-type {
        flex-grow: 1;
        text-align: end;
    }

.scan-results-images-btn {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.canresult-info {
    width: 30%;
    margin-left: 10px;
}

.canresult-table {
    width: 60%;
    margin-right: 10px;
    border: 1px solid #dddddd;
}

.info-list {
    list-style-type: none;
    padding: 0;
}

.info-item {
    margin-bottom: 8px;
}

.canresult-row {
    display: flex;
    border-bottom: 1px solid #dddddd;
}

.cell {
    flex: 1;
    padding: 8px;
}

.canresult-th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.iframe-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

    .iframe-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .image-container img {
        display: block;
        cursor: grab;
        transition: transform 0.3s ease;
        user-select: none;
    }

        .image-container img:active {
            cursor: grabbing;
        }



/* MyComponent.razor.css */
.moveImager-container {
    position: relative;
    height: 100vh; /* Set height of container to viewport height */
    overflow: hidden;
}

.moveImager-image {
    position: absolute;
    bottom: 0;
    left: 5%; /* Start with 5% from the left */
    transition: all 1s ease-in-out; /* Smooth transition */
}

.hidden {
    visibility: hidden;
}

.BSDateTimePicker-label {
    font-size: 18px;
}

.BSDateTimePicker-input {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}
