#backoffice_inhalt{
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto 1fr;
    margin-left: 50px;
    margin-right: 50px;
    min-height: 40vh;
}

.backoffice_ueberschrift{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

#backoffice_navi{
    display: flex;
    grid-row: 1/2;
    grid-column: 1/2;
    background-color: white;
    border-top: 3px solid #106eb4;
    border-left: 3px solid #106eb4;
    border-bottom: 3px solid #106eb4;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#backoffice_navi ul li{
    margin-left: -25px;
    margin-right: -30px;
    list-style: none;
    margin-bottom: 20px;
}

#backoffice_navi ul li ul{
    margin-bottom: 5px;
}

#backoffice_navi ul li ul li{
    list-style: none;
    margin-top: 5px;
    margin-bottom: 0px;
}

#backoffice_navi a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #106eb4;
    font-weight: bold;
}

#backoffice_navi a:after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}

#backoffice_navi a:hover::after{
    background-color: #106eb4;
    transform: scaleX(1);
    transform-origin: bottom center;
}

#backoffice_navi img{
    height: 25px;
    width: auto;
    margin-bottom: -6px;
    margin-right: -5px;
}

#backoffice_body{
    background-color: white;
    grid-row: 1/3;
    grid-column: 2/3;
    padding: 5px;
    border: 3px solid #106eb4;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.backoffice_text a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #106eb4;
}

.backoffice_text a:after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}

.backoffice_text a:hover::after{
    background-color: #106eb4;
    transform: scaleX(1);
    transform-origin: bottom center;
}

.backoffice_ansehen_hover:hover{
    background-image: url("../media/grafiken/ansehen_zu_blau.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.backoffice_filter_auswahl{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
}

.backoffice_filter_auswahl_100{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    width: 90%;
}

.backoffice_erfolgreich{
    border: 3px solid #00b62f;
    border-radius: 10px;
    color: #00b62f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_fehler{
    border: 3px solid #e3010f;
    border-radius: 10px;
    color: #e3010f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #106eb4;
    border: 2px solid #106eb4;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    width: 100%;
    height: 40px;
    cursor: pointer;
}

.backoffice_button:active{
    box-shadow: inset 2px 2px 2px 0px gray;
}

.backoffice_button img{
    display: none;
    width: 30px;
    height: auto;
}

.backoffice_button:hover img{
    display: inline-block;
}

.backoffice_abfrage{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    align-items: end;
    border: 3px solid #e3010f;
    border-radius: 10px;
    color: #e3010f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_abfrage_2spalten{
    grid-column: 1/3;
}


/* Bestellungen */
.backoffice_bestellung_filter{
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.backoffice_bestellung_filter_tabelle{
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 15px;
    padding: 5px;
    margin-bottom: 20px;
    align-items: end;
    justify-content: start;
    border: 3px solid #106eb4;
    border-radius: 10px;
}

.backoffice_bestellung_filter_tabelle img{
    width: 24px;
    height: auto;
    margin-bottom: -5px;
}

.backoffice_bestellung_filter_3spalten{
    grid-column: 1/5;
}

.backoffice_bestellung_filter_schliessen{
    text-align: end;
}

.backoffice_bestellung_filter_auswahl{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
}

.backoffice_bestellung_filter_tabelle_unter{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    height: 100%;
    gap: 5px;
}

.backoffice_bestellung_tabelle{
    grid-column: 1/4;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr) 150px;
    grid-template-rows: auto;
    row-gap: 10px;
    align-items: start;
    text-align: start;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.backoffice_bestellung_tabelle textarea{
    padding: 5px;
    border: 2px solid #106eb4;
    border-radius: 10px;
    width: 95%;
    height: 50px;
}

.backoffice_bestellung_tabelle_speichern{
    grid-column: 3/4;
    grid-row: 1/3;
}

.backoffice_bestellung_tabelle_bearbeiten{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto auto auto 1fr repeat(5, auto);
    grid-template-rows: auto;
    align-items: center;
    column-gap: 15px;
    row-gap: 5px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.backoffice_bestellung_tabelle_bearbeiten img{
    height: 24px;
    width: auto;
    margin-bottom: -5px;
}

.backoffice_bestellung_unterteilung{
    grid-column: 1/10;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_bestellung_update{
    grid-column: 1/4;
    font-size: 16px;
    color: gray;
}

.backoffice_bestellung_erfolgreich{
    grid-column: 1/3;
    border: 3px solid #00b62f;
    border-radius: 10px;
    color: #00b62f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_bestellung_error{
    grid-column: 1/3;
    border: 3px solid #e3010f;
    border-radius: 10px;
    color: #e3010f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_bestellung_hinweis{
    grid-column: 1/4;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: gray;
}

.backoffice_bestellung_tabelle .backoffice_bestellung_hinweis img{
    height: 18px;
    width: auto;
}

.backoffice_bestellung_statistik_tabelle_layout_1reihe{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.backoffice_bestellung_statistik_tabelle_layout_2reihe{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.backoffice_bestellung_statistik_tabelle_layout_4reihe{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.backoffice_bestellung_statistik_diagram_aussen{
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 2px;
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_bestellung_statistik_diagram_aussen_ueber{
    font-weight: bold;
    color: #e3010f;
    text-align: center;
}

.backoffice_bestellung_statistik_diagram_links{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
    justify-content: end;
    text-align: end;
    border-right: 2px solid #106eb4;
    padding-right: 5px;
    height: 100%;
}

.backoffice_bestellung_statistik_diagram_links_oben{
    display: flex;
    align-items: start;
    justify-content: end;
    margin-top: -7px;
}

.backoffice_bestellung_statistik_diagram_links_mitte{
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: -7px;
}

.backoffice_bestellung_statistik_diagram_links_unten{
    display: flex;
    align-items: end;
    justify-content: end;
    margin-bottom: -10px;
}

.backoffice_bestellung_statistik_diagram_main{
    display: grid;
    grid-template-rows: 200px;
    column-gap: 5px;
    text-align: start;
    justify-content: start;
    align-items: end;
    margin-bottom: -2px;
    text-align: center;
}

.backoffice_bestellung_statistik_diagram_balken{
    display: flex;
    position: relative;
    align-items: end;
    justify-content: center;
    width: 20px;
    background-image: linear-gradient(132deg, #106eb4, #eaeaea);
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_bestellung_statistik_hover{
    display: none;
}

.backoffice_bestellung_statistik_diagram_balken:hover .backoffice_bestellung_statistik_hover{
    display: flex;
    position: absolute;
    top: -40px;
    background-image: linear-gradient(132deg, #106eb4, #eaeaea);
    box-shadow: 4px 4px 4px 0px #8080806a;
    border: 1px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    width: max-content;
    z-index: 2;
}

.backoffice_bestellung_statistik_diagram_unten{
    display: grid;
    grid-template-rows: auto;
    column-gap: 5px;
    text-align: center;
    justify-content: center;
    align-items: end;
    width: fit-content;
    padding-top: 5px;
    border-top: 2px solid #106eb4;
}

/* Media */
.backoffice_media_button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #106eb4;
    border: 2px solid #106eb4;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    width: 100%;
    min-width: 190px;
    height: 40px;
    cursor: pointer;
}

.backoffice_media_button:active{
    box-shadow: inset 2px 2px 2px 0px gray;
}

.backoffice_media_button img{
    display: none;
    width: 30px;
    height: auto;
}

.backoffice_media_button:hover img{
    display: inline-block;
}

.backoffice_media_eintragen_ordner{
    display: block;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_media_eintragen_ordner a{
    display: inline-block;
    border: 2px solid #106eb4;
    border-radius: 10px;
    color: #106eb4;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    width: fit-content;
    height: fit-content;
    margin-bottom: 10px;
    margin-right: 10px;
}

.backoffice_media_eintragen_ueber{
    color: #e3010f;
    font-weight: bold;
    margin-bottom: 10px;
}

.backoffice_media_eintragen{
    display: block;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_media_eintragen_button{
    font-size: larger;
    background-color: #106eb4;
    color: white;
    padding-left: 40px;
    padding-bottom: 50px;
    padding-top: 60px;
    border-radius: 10px;
    background-image: url("../media/grafiken/upload_weiss.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: top;
}

.backoffice_media_eintragen_bilder{
    display: flex;
    justify-content: center;
    align-items: center;
}

.backoffice_media_eintragen_bilder img{
    max-width: 100px;
    max-height: 100px;
}

.backoffice_media_eintragen_link_button{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #106eb4;
    border: 2px solid #106eb4;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    width: 200px;
    height: 37px;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_media_eintragen_link_button:active{
    box-shadow: inset 2px 2px 2px 0px gray;
}

.backoffice_media_eintragen_link_button img{
    display: none;
    width: 30px;
    height: auto;
}

.backoffice_media_eintragen_link_button:hover img{
    display: inline-block;
}

.backoffice_media_show_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, auto) 1fr auto;
    grid-template-rows: auto;
    gap: 5px;
    align-items: center;
}

.backoffice_media_show_tabelle img{
    max-height: 50px;
    max-width: 50px;
}

.backoffice_media_show_tabelle_unterteilung{
    grid-column: 1/7;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_media_show_tabelle_5spalten{
    grid-column: 1/5;
}

.backoffice_media_show_tabelle_artikel{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    row-gap: 3px;
    align-items: center;
    background-color: #106eb4;
}

.backoffice_media_show_tabelle_artikel a img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_media_show_tabelle_artikel div{
    background-color: white;
    padding: 5px;
    height: 24px;
}

.backoffice_media_not_use_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, auto) 1fr auto;
    grid-template-rows: auto;
    gap: 5px;
    align-items: center;
}

.backoffice_media_not_use_tabelle img{
    max-height: 50px;
    max-width: 50px;
}

.backoffice_media_not_use_tabelle_unterteilung{
    grid-column: 1/6;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_media_not_use_tabelle_4spalten{
    grid-column: 1/5;
}

.backoffice_media_not_use_id{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    row-gap: 10px;
    column-gap: 10px;
}

.backoffice_media_not_use_id img{
    max-height: 200px;
    max-width: 200px;
}

.backoffice_media_not_use_id_bild{
    grid-column: 1/3;
    text-align: center;
    background-color: #eaeaea;
    border-radius: 10px;
    padding: 10px;
}

.backoffice_media_not_use_id_2spalten{
    grid-column: 1/3;
}

.backoffice_media_not_use_id_menue{
    grid-column: 1/3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.backoffice_media_not_use_id_menue img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_media_not_use_id_abfrage{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 5px;
    align-items: center;
    border: 3px solid #106eb4;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    background-color: #eaeaea;
}

.backoffice_media_not_use_id_abfrage_2spalten{
    grid-column: 1/3;
}


/* Fehler */
.backoffice_fehler_artikel_doppel_ueber{
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
    margin-bottom: 20px;
}

.backoffice_fehler_artikel_doppel{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    gap: 5px;
    width: auto;
}

.backoffice_fehler_artikel_doppel img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_fehler_artikel_doppel_unterteilung{
    grid-column: 1/4;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_fehler_artikel_doppel_unter_unterteilung{
    grid-column: 1/3;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_fehler_artikel_doppel_unter{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    gap: 5px;
    width: auto;
}

.backoffice_fehler_artikel_doppel_unter img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_fehler_artikel_doppel_artikel{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    justify-content: center;
    gap: 5px;
    width: auto;
}

.backoffice_fehler_artikel_doppel_artikel img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_fehler_artikel_doppel_2spalten{
    grid-column: 1/3;
}

.backoffice_fehler_artikel_doppel_abfrage{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 5px;
    align-items: center;
    border: 3px solid #106eb4;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    background-color: #eaeaea;
}

.backoffice_fehler_artikel_bilder_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 5px;
}

.backoffice_fehler_artikel_bilder_tabelle img{
    height: 24px;
    width: auto;
    margin-bottom: -3px;
}

.backoffice_fehler_artikel_bilder_unterteilung{
    grid-column: 1/4;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

/* Intern */
.backoffice_intern_mail_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto;
    width: fit-content;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_intern_mail_tabelle_unter{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 150px;
    grid-template-rows: auto;
    gap: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_intern_mail_speichern{
    grid-column: 2/3;
}

.backoffice_intern_mail_2spalten{
    grid-column: 1/3;
}

.backoffice_intern_mail_versand_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, auto) 1fr auto;
    grid-template-rows: auto;
    column-gap: 10px;
    align-items: center;
}

.backoffice_intern_mail_versand_tabelle img{
    height: 30px;
    width: auto;
}

.backoffice_intern_mail_versand_tabelle_unterteilung{
    grid-column: 1/6;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_intern_mail_versand_tabelle_unter{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 10px;
    align-items: center;
}

.backoffice_intern_mail_versand_tabelle_unter img{
    height: 30px;
    width: auto;
}

.backoffice_intern_csv_tabelle{
    display: block;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_intern_csv_tabelle_auswahl_trenner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.backoffice_intern_csv_tabelle_auswahl_durchgang{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.backoffice_intern_csv_tabelle_auswahl_hinweis{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: gray;
}

.backoffice_intern_csv_tabelle_auswahl_hinweis_2spalten{
    grid-column: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: gray;
}

.backoffice_intern_csv_eingabe{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
}

.backoffice_intern_csv_button{
    background-color: #106eb4;
    border-radius: 10px;
    border: 5px;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
    color: white;
    font-size: 20px;
    background-image: url("../media/grafiken/upload_weiss.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: top;
}

.backoffice_intern_csv_grafik{
    height: 25px;
    width: auto;
    margin-bottom: -8px;
}

.backoffice_intern_qrcode_mitte{
    display: block;
    width: fit-content;
    height: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.backoffice_intern_qrcode_erfolg{
    display: block;
    width: fit-content;
    height: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #00b62f;
    border-radius: 10px;
    padding: 10px;
}

.backoffice_intern_qrcode_aneigen{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_intern_qrcode_aneigen img{
    height: 24px;
    width: auto;
}

.backoffice_intern_qrcode_aneigen div{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
}

.backoffice_intern_qrcode_tabelle{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_intern_qrcode_tabelle a{
    display: block;
    color: #106eb4;
    font-size: 25px;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    text-decoration: none;
    width: 300px;
    height: auto;
    padding: 20px;
    transition: 0.4s;
}

.backoffice_intern_qrcode_tabelle a:hover{
    box-shadow: inset 4px 4px 4px 0px #808080;
    transition: 0.4s;
}

.backoffice_intern_qrcode_input{
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    width: 45px;
    height: 25px;
    cursor: pointer;
}

.backoffice_intern_qrcode_bild{
    width: 100px;
    height: auto;
}

.backoffice_intern_qr_eingabe_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, auto) 1fr auto;
    grid-template-rows: auto;
    column-gap: 10px;
    align-items: center;
}

.backoffice_intern_qr_eingabe_tabelle img{
    height: 30px;
    width: auto;
}

.backoffice_intern_qr_eingabe_tabelle_unterteilung{
    grid-column: 1/6;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_intern_qr_eingabe_tabelle_unter{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 10px;
    align-items: start;
}

.backoffice_intern_qr_eingabe_tabelle_unter img{
    height: 30px;
    width: auto;
}

.backoffice_intern_tabelle_filter{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-content: center;
    column-gap: 5px;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.backoffice_intern_tabelle_filter_3spalten{
    grid-column: 1/4;
    grid-row: 1/3;
}

.backoffice_intern_tabelle_filter_button{
    grid-column: 4/5;
    grid-row: 1/3;
    justify-content: center;
}

.backoffice_intern_tabelle{
    display: flex;
    justify-content: center;
    align-items: center;
}

.backoffice_intern_tabelle_anzeigen_ueber{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    justify-content: center;
    align-items: center;
    text-align: center;
    column-gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.backoffice_intern_tabelle_anzeigen_scroll{
    display: flex;
    justify-content: start;
    align-items: start;
    width: 1250px;
    padding: 5px;
}

.backoffice_intern_tabelle_anzeigen{
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: auto;
    justify-content: center;
    column-gap: 3px;
    row-gap: 3px;
    background-color: #106eb4;
    border: 3px solid #106eb4;
    overflow-x: scroll;
}

.backoffice_intern_tabelle_anzeigen div{
    background-color: white;
    padding: 2px;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.backoffice_intern_tabelle_id_anzeigen{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    row-gap: 3px;
    background-color: #106eb4;
    padding: 3px;
}

.backoffice_intern_tabelle_id_anzeigen div{
    background-color: white;
    padding: 5px;
}


/* Notizen */
.backoffice_intern_notizen_oben{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    row-gap: 10px;
    justify-content: end;
    padding: 10px;
    border: 3px solid #106eb4;
    border-radius: 10px;
    margin-bottom: 10px;
}

.backoffice_intern_notizen_oben textarea{
    width: 80%;
    height: 100px;
    padding: 10px;
    border: 2px solid #106eb4;
    border-radius: 10px;
}

.backoffice_intern_notizen_neu{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.backoffice_intern_notizen_neu img{
    height: 24px;
    width: auto;
    margin-bottom: -5px;
}

.backoffice_intern_notizen_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, auto) 1fr;
    grid-template-rows: auto;
    gap: 5px;
}

.backoffice_intern_notizen_tabelle_unterteilung{
    grid-column: 1/5;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_intern_notizen_tabelle_anzeigen{
    text-align: end;
}

.backoffice_intern_notizen_anzeigen{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 5px;
}


/* Label */
.backoffice_label_artikel_multi_filter{
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 15px;
    padding: 5px;
    margin-bottom: 20px;
    align-items: end;
    justify-content: start;
    border: 3px solid #106eb4;
    border-radius: 10px;
}

.backoffice_label_artikel_multi_filter img{
    width: 24px;
    height: auto;
    margin-bottom: -5px;
}

.backoffice_label_artikel_multi_3spalten{
    grid-column: 1/5;
}

.backoffice_label_artikel_multi_schliessen{
    text-align: end;
}

.backoffice_label_artikel_multi_auswahl{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
}

.backoffice_label_artikel_multi_tabelle{
    display: grid;
    grid-template-columns: 1fr repeat(5, auto) 100px;
    grid-template-rows: repeat(10, auto);
    column-gap: 15px;
    row-gap: 5px;
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.backoffice_label_artikel_multi_unterteilung{
    grid-column: 1/8;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.backoffice_label_artikel_multi_tabelle_anzeigen{
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    grid-template-rows: repeat(10, auto);
    column-gap: 15px;
    row-gap: 10px;
    align-items: start;
}

.backoffice_label_artikel_multi_tabelle_anzeigen_2spalten{
    grid-column: 1/3;
}

.backoffice_label_artikel_multi_tabelle_anzeigen_speichern{
    grid-row: 1/9;
    grid-column: 3/4;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    row-gap: 20px;
    text-align: center;
    justify-content: center;
}

.backoffice_label_ergebnis{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: 1fr;
    row-gap: 10px;
    column-gap: 5px;
    width: fit-content;
    align-items: center;
    text-align: start;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.backoffice_label_ergebnis img{
    width: 24px;
    height: auto;
    margin-bottom: -5px;
}

.backoffice_label_notfound_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr repeat(2, auto);
    grid-template-rows: auto;
    gap: 2px;
    padding: 3px;
    background-color: #106eb4;
}

.backoffice_label_notfound_tabelle div{
    background-color: white;
    padding: 5px;
}


/* Stellenangebote */
.backoffice_sonstiges_stellen_tabelle_bearbeiten{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 10px;
}

.backoffice_sonstiges_stellen_tabelle_bearbeiten a{
    border: 1px solid red;
}

.backoffice_sonstiges_stellen_tabelle_bearbeiten textarea{
    width: 80%;
    height: 100px;
    padding: 10px;
    border: 2px solid #106eb4;
    border-radius: 10px;
}

.backoffice_sonstiges_stellen_tabelle_bearbeiten_2spalten{
    grid-column: 1/3;
}

.backoffice_sonstiges_stellen_tabelle_ort{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
}

.backoffice_sonstiges_stellen_tabelle_ort div div{
    color:  red;
    font-size: 14px;
}