#order_notice {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
  }
  </style>


/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
 .la-line-scale,
.la-line-scale > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.la-line-scale {
    display: block;
    font-size: 0;
    color: #fff;
}
.la-line-scale.la-dark {
    color: #333;
}
.la-line-scale > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-line-scale {
    width: 40px;
    height: 32px;
}
.la-line-scale > div {
    width: 4px;
    height: 32px;
    margin: 2px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    -webkit-animation: line-scale 1.2s infinite ease;
       -moz-animation: line-scale 1.2s infinite ease;
         -o-animation: line-scale 1.2s infinite ease;
            animation: line-scale 1.2s infinite ease;
}
.la-line-scale > div:nth-child(1) {
    -webkit-animation-delay: -1.2s;
       -moz-animation-delay: -1.2s;
         -o-animation-delay: -1.2s;
            animation-delay: -1.2s;
}
.la-line-scale > div:nth-child(2) {
    -webkit-animation-delay: -1.1s;
       -moz-animation-delay: -1.1s;
         -o-animation-delay: -1.1s;
            animation-delay: -1.1s;
}
.la-line-scale > div:nth-child(3) {
    -webkit-animation-delay: -1s;
       -moz-animation-delay: -1s;
         -o-animation-delay: -1s;
            animation-delay: -1s;
}
.la-line-scale > div:nth-child(4) {
    -webkit-animation-delay: -.9s;
       -moz-animation-delay: -.9s;
         -o-animation-delay: -.9s;
            animation-delay: -.9s;
}
.la-line-scale > div:nth-child(5) {
    -webkit-animation-delay: -.8s;
       -moz-animation-delay: -.8s;
         -o-animation-delay: -.8s;
            animation-delay: -.8s;
}
.la-line-scale.la-sm {
    width: 20px;
    height: 16px;
}
.la-line-scale.la-sm > div {
    width: 2px;
    height: 16px;
    margin: 1px;
    margin-top: 0;
    margin-bottom: 0;
}
.la-line-scale.la-2x {
    width: 80px;
    height: 64px;
}
.la-line-scale.la-2x > div {
    width: 8px;
    height: 64px;
    margin: 4px;
    margin-top: 0;
    margin-bottom: 0;
}
.la-line-scale.la-3x {
    width: 120px;
    height: 96px;
}
.la-line-scale.la-3x > div {
    width: 12px;
    height: 96px;
    margin: 6px;
    margin-top: 0;
    margin-bottom: 0;
}
/*
 * Animation
 */
@-webkit-keyframes line-scale {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4);
                transform: scaleY(.4);
    }
    20% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
    }
}
@-moz-keyframes line-scale {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4);
           -moz-transform: scaleY(.4);
                transform: scaleY(.4);
    }
    20% {
        -webkit-transform: scaleY(1);
           -moz-transform: scaleY(1);
                transform: scaleY(1);
    }
}
@-o-keyframes line-scale {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4);
             -o-transform: scaleY(.4);
                transform: scaleY(.4);
    }
    20% {
        -webkit-transform: scaleY(1);
             -o-transform: scaleY(1);
                transform: scaleY(1);
    }
}
@keyframes line-scale {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4);
           -moz-transform: scaleY(.4);
             -o-transform: scaleY(.4);
                transform: scaleY(.4);
    }
    20% {
        -webkit-transform: scaleY(1);
           -moz-transform: scaleY(1);
             -o-transform: scaleY(1);
                transform: scaleY(1);
    }
}

/* ===================================================================
   Backend – Standard-Modal-System  (Präfix: be-modal-*)
   Verwendung: alle Fullscreen-Overlay-Dialoge im Backend
   =================================================================== */

/* Overlay-Backdrop */
.be-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

/* Dialog-Container */
.be-modal {
    width: 900px;
    max-width: 96vw;
    height: 82vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
}

/* --- Header --- */
.be-modal-header {
    background: #fff;
    padding: 18px 24px;
    border-bottom: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.be-modal-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.be-modal-header__icon {
    background: #e8f4fd;
    border-radius: 8px;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #3c8dbc;
    flex-shrink: 0;
}
.be-modal-header__title {
    font-size: 17px;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}
.be-modal-header__subtitle {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

/* Icon-Buttons (Schließen, Zurück …) */
.be-modal-icon-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
    border-radius: 6px;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.be-modal-icon-btn:hover {
    background: #e9ecef;
    color: #495057;
}

/* --- Toolbar (Suche / Filter) --- */
.be-modal-toolbar {
    padding: 14px 24px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    flex-shrink: 0;
}

/* --- Body --- */
.be-modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 0;
}
.be-modal-body--padded {
    padding: 24px;
}

/* --- Kachelraster (z. B. Kategorieauswahl) --- */
.be-modal-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

/* Einzelne Kachel */
.be-modal-tile {
    transition: all .15s ease;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 22px 14px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    width: 100%;
}
.be-modal-tile:hover {
    border-color: #3c8dbc !important;
    background: #e8f4fd !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}
.be-modal-tile--dashed {
    border-style: dashed;
}
.be-modal-tile__icon {
    font-size: 26px;
    margin-bottom: 10px;
    color: #3c8dbc;
}
.be-modal-tile__icon--muted { color: #6c757d; }
.be-modal-tile__title {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
    word-break: break-word;
}
.be-modal-tile__title--muted { color: #495057; }
.be-modal-tile__badge {
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
    background: #f0f4f8;
    border-radius: 20px;
    padding: 2px 10px;
    display: inline-block;
}

/* --- Leerer Zustand --- */
.be-modal-empty {
    text-align: center;
    padding: 48px 24px;
    color: #adb5bd;
}
.be-modal-tile-grid .be-modal-empty {
    grid-column: 1 / -1;   /* volle Breite im Grid */
}
.be-modal-empty__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
    opacity: .4;
}
.be-modal-empty__note {
    font-size: 12px;
    margin-top: 6px;
}
.be-modal-empty__link {
    color: #3c8dbc;
    cursor: pointer;
}

/* --- Tabelle --- */
.be-modal-table {
    table-layout: fixed;
}
.be-modal-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.be-modal-table th {
    padding: 12px 16px !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #dee2e6 !important;
}
.be-modal-table td {
    padding: 12px 16px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.be-modal-table tbody tr {
    cursor: pointer;
    transition: background .15s;
}

/* --- Footer --- */
.be-modal-footer {
    padding: 14px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.be-modal-footer--end { justify-content: flex-end; }
.be-modal-footer__left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.be-modal-footer__actions {
    display: flex;
    gap: 8px;
}
.be-modal-footer .btn {
    border-radius: 6px;
    padding: 8px 20px;
}
.be-modal-footer .btn-primary {
    background: linear-gradient(135deg, #3c8dbc, #2575a0);
    border: none;
}
.be-modal-footer .btn-primary:hover,
.be-modal-footer .btn-primary:focus {
    background: linear-gradient(135deg, #2575a0, #1a5f82);
    border: none;
}

/* Auswahl-Badge & Hinweise */
.be-modal-selection-badge {
    background: #3c8dbc;
    color: #fff;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
}
.be-modal-hint {
    color: #adb5bd;
    font-size: 13px;
}
.be-modal-result-info {
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
}

/* ===================================================================
   Backend – Bootstrap-Modal-Overrides
   Wendet das be-modal-Design auf alle Standard-Bootstrap-Modals an
   =================================================================== */

/* Dialog-Container */
.modal .modal-content {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35) !important;
    overflow: hidden !important;
}

/* Header */
.modal .modal-header {
    background: #fff !important;
    padding: 18px 24px !important;
    border-bottom: 2px solid #dee2e6 !important;
    border-radius: 0 !important;
    align-items: center !important;
}
.modal .modal-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #212529 !important;
    line-height: 1.2 !important;
}

/* Schließen-Button */
.modal .modal-header .close {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #6c757d !important;
    border-radius: 6px !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    opacity: 1 !important;
    transition: background .15s, color .15s;
    flex-shrink: 0 !important;
    text-shadow: none !important;
}
.modal .modal-header .close:hover {
    background: #e9ecef !important;
    color: #495057 !important;
    opacity: 1 !important;
}
.modal .modal-header .close span {
    line-height: 1;
    display: block;
}

/* Body */
.modal .modal-body {
    padding: 24px !important;
}

/* Footer */
.modal .modal-footer {
    padding: 14px 24px !important;
    border-top: 1px solid #e9ecef !important;
    background: #f8f9fa !important;
    border-radius: 0 !important;
}
.modal .modal-footer .btn {
    border-radius: 6px !important;
    padding: 8px 20px !important;
}
.modal .modal-footer .btn-primary {
    background: linear-gradient(135deg, #3c8dbc, #2575a0) !important;
    border: none !important;
}
.modal .modal-footer .btn-primary:hover,
.modal .modal-footer .btn-primary:focus {
    background: linear-gradient(135deg, #2575a0, #1a5f82) !important;
    border: none !important;
}

/* Backdrop */
.modal-backdrop.show {
    opacity: .55;
}