#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: 5px;
    border-bottom-left-radius: 5px;
}

#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: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.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: 5px;
    padding: 5px;
}

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

.backoffice_erfolgreich{
    border: 3px solid #00b62f;
    border-radius: 5px;
    color: #00b62f;
    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: 5px;
    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;
}


/* Bestellung */
.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: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

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

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

.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: 5px;
    color: #00b62f;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}

.backoffice_bestellung_error{
    grid-column: 1/3;
    border: 3px solid #e3010f;
    border-radius: 5px;
    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;
}


/* Benutzer */
.backoffice_benutzer_neu_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-column: repeat(2, auto);
    grid-row: repeat(1, 1fr);
}


/* 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_csv_tabelle{
    display: block;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.backoffice_intern_csv_button{
    background-color: #106eb4;
    border-radius: 5px;
    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: 5px;
    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: 5px;
    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: 5px;
    padding: 5px;
    width: 45px;
    height: 25px;
    cursor: pointer;
}

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


/* Media */
.backoffice_media_button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #106eb4;
    border: 2px solid #106eb4;
    border-radius: 5px;
    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: 5px;
    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: 12px;
    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;
}

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

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

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

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