:root {
            --app-bg-0: #f6f8fc;
            --app-bg-1: #edf2fb;
            --app-surface: rgba(255, 255, 255, 0.92);
            --app-surface-strong: #ffffff;
            --app-border: #dbe5f3;
            --app-border-strong: #c8d5e8;
            --app-text: #0f172a;
            --app-text-soft: #475569;
            --app-muted: #64748b;
            --app-accent: #2563eb;
            --app-accent-2: #0ea5e9;
            --app-success: #16a34a;
            --app-warn: #d97706;
            --app-danger: #dc2626;
            --app-shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
            --app-shadow-md: 0 14px 34px rgba(15, 23, 42, 0.10);
            --app-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
            --app-radius-sm: 10px;
            --app-radius-md: 14px;
            --app-radius-lg: 18px;
        }

        html, body {
            min-height: 100%;
        }

        body.app-body {
            color: var(--app-text);
            background:
                radial-gradient(circle at 8% 2%, rgba(37, 99, 235, 0.11) 0%, rgba(37, 99, 235, 0) 35%),
                radial-gradient(circle at 92% 12%, rgba(14, 165, 233, 0.09) 0%, rgba(14, 165, 233, 0) 34%),
                radial-gradient(circle at 88% 92%, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0) 34%),
                linear-gradient(180deg, var(--app-bg-0) 0%, var(--app-bg-1) 100%);
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        a {
            color: #1d4ed8;
        }
        a:hover {
            color: #1e40af;
        }

        /* Einheitliche Größe der Produktbilder */
        .fixed-size-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            background: #fff;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
        }

        .main-container {
            padding-left: 18px;
            padding-right: 18px;
            padding-bottom: 28px;
        }

        .main-container > .container,
        .main-container > .container-fluid {
            background: transparent;
        }

        .main-container > .container-fluid.mt-4,
        .main-container > .container-fluid.py-4,
        .main-container > .container-fluid.py-3 {
            margin-top: 0 !important;
            padding-top: 0.75rem !important;
        }

        /* Shared "modern" surfaces */
        .card,
        .modal-content,
        .table-responsive,
        .alert,
        .dropdown-menu {
            border-radius: var(--app-radius-md);
            border-color: var(--app-border);
        }

        .card,
        .modal-content {
            background: var(--app-surface);
            backdrop-filter: saturate(140%) blur(8px);
            box-shadow: var(--app-shadow-sm);
        }

        .card-header {
            background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,250,253,0.95) 100%);
            border-bottom: 1px solid var(--app-border);
        }

        .table-responsive {
            background: rgba(255,255,255,0.82);
            box-shadow: var(--app-shadow-sm);
            overflow-x: auto;
            overflow-y: hidden;
        }

        .table {
            margin-bottom: 0;
            --bs-table-bg: transparent;
            --bs-table-striped-bg: rgba(148, 163, 184, 0.06);
            --bs-table-hover-bg: rgba(37, 99, 235, 0.05);
            --bs-table-border-color: rgba(203, 213, 225, 0.85);
        }

        .table > :not(caption) > * > * {
            padding: 0.7rem 0.75rem;
            vertical-align: middle;
        }

        .table thead th {
            font-size: 0.78rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 700;
            color: #f8fafc;
            border-bottom-width: 0;
        }

        .table thead.table-dark,
        .table-dark > tr > th,
        .table-dark > tr > td {
            --bs-table-bg: linear-gradient(180deg, #1f2a44 0%, #141c2f 100%);
        }

        .table-dark th {
            background: linear-gradient(180deg, #1f2a44 0%, #141c2f 100%) !important;
        }

        .form-control,
        .form-select,
        .input-group-text,
        textarea.form-control {
            border-radius: 12px;
            border-color: var(--app-border-strong);
            box-shadow: none !important;
            min-height: 42px;
        }

        .form-control,
        .form-select,
        textarea.form-control {
            background: rgba(255,255,255,0.96);
        }

        .input-group > .form-control,
        .input-group > .form-select {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

        .input-group-text {
            background: linear-gradient(180deg, #f8fbff 0%, #edf3fc 100%);
            color: var(--app-text-soft);
            font-weight: 600;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: rgba(37, 99, 235, 0.45);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12) !important;
            background: #fff;
        }

        .btn {
            border-radius: 12px;
            font-weight: 600;
            letter-spacing: 0.01em;
            box-shadow: none;
            transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.18s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn-primary {
            background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
            border-color: #1d4ed8;
        }

        .btn-success {
            background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
            border-color: #16a34a;
        }

        .btn-warning {
            background: linear-gradient(180deg, #facc15 0%, #f59e0b 100%);
            border-color: #f59e0b;
            color: #221b08;
        }

        .btn-danger {
            background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
            border-color: #dc2626;
        }

        .btn-outline-secondary {
            border-color: #cbd5e1;
            color: #334155;
            background: rgba(255,255,255,0.8);
        }

        .badge {
            border-radius: 999px;
            padding: 0.45em 0.7em;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .alert {
            border-width: 1px;
            box-shadow: var(--app-shadow-sm);
        }

        .modal-header, .modal-footer {
            border-color: rgba(203, 213, 225, 0.7);
        }

        .progress {
            border-radius: 999px;
            background: rgba(148, 163, 184, 0.18);
            overflow: hidden;
            height: 10px;
        }

        .progress-bar {
            border-radius: 999px;
        }

        .form-check-input {
            border-color: #b8c5da;
        }
        .form-check-input:checked {
            background-color: var(--app-accent);
            border-color: var(--app-accent);
        }

        .nav-pills .nav-link {
            border-radius: 12px;
            font-weight: 600;
        }

        .nav-pills .nav-link.active,
        .nav-pills .show > .nav-link {
            background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
            box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
        }

        .dashboard-hero,
        .bestellung-hero,
        .auto-card,
        .inbox-summary-box {
            box-shadow: var(--app-shadow-sm);
        }

        /* Zeilenfarben für Bestellungen */
        .status-green {
            background-color: #dcfce7 !important;
        }
        .status-yellow {
            background-color: #fef3c7 !important;
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.05rem;
            }

            .fixed-size-img {
                width: 80px;
                height: 80px;
            }

            .main-container {
                padding-left: 10px;
                padding-right: 10px;
                padding-bottom: 18px;
            }

            .btn {
                border-radius: 10px;
            }
        }

  .app-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background:
      linear-gradient(180deg, rgba(11, 16, 27, 0.90) 0%, rgba(17, 24, 39, 0.88) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.24);
    backdrop-filter: blur(14px) saturate(130%);
  }

  .app-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f8fafc !important;
    letter-spacing: 0.5px;
    font-weight: 800;
    padding: 0.25rem 0.45rem 0.25rem 0.15rem;
    border-radius: 12px;
  }

  .app-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.16);
    box-shadow: none !important;
  }

  .app-navbar .navbar-collapse {
    align-items: center;
    gap: 0.75rem;
  }

  @media (min-width: 992px) {
    .app-navbar .container {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      column-gap: 1rem;
    }

    .app-navbar .navbar-brand {
      position: relative;
      z-index: 2;
    }

    .app-navbar .navbar-collapse {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.9rem;
      min-width: 0;
    }

    .app-nav-scroller {
      position: static;
      width: auto;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: visible;
      display: block;
      text-align: center;
      padding-inline: 0.25rem;
    }

    .app-nav-list {
      justify-content: flex-start;
      min-width: 0;
      width: auto;
      margin: 0;
      flex-wrap: nowrap;
      gap: 0.2rem;
    }

    .app-nav-list .app-nav-link {
      padding: 0.42rem 0.55rem !important;
      font-size: 0.88rem;
    }

    .app-nav-list .app-nav-link i {
      font-size: 0.95rem;
    }

    .app-navbar-right {
      position: relative;
      z-index: 2;
      margin-left: 0;
      justify-self: end;
    }
  }

  .app-nav-scroller {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
    padding-bottom: 2px;
  }

  .app-nav-scroller::-webkit-scrollbar {
    height: 6px;
  }

  .app-nav-scroller::-webkit-scrollbar-track {
    background: transparent;
  }

  .app-nav-scroller::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
  }

  .app-nav-list {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.2rem;
    align-items: center;
    width: auto;
    min-width: 0;
  }

  @media (min-width: 992px) {
    .app-nav-list {
      gap: 0.15rem;
    }

    .app-nav-list .app-nav-link {
      padding: 0.4rem 0.5rem !important;
      font-size: 0.85rem;
    }

    .app-nav-list .app-nav-link i {
      font-size: 0.92rem;
    }
  }

  /* Schmale Desktops (Laptop): nur Icons, Labels ausblenden — verhindert horizontalen Scroll */
  @media (min-width: 992px) and (max-width: 1399px) {
    .app-nav-list .app-nav-label {
      display: none;
    }

    .app-nav-list .app-nav-link {
      padding: 0.45rem 0.65rem !important;
    }

    .app-nav-list .app-nav-link i {
      font-size: 1.05rem;
      margin-right: 0 !important;
    }

    .app-nav-list .app-nav-link.dropdown-toggle::after {
      margin-left: 0.3rem;
    }
  }

  .app-nav-scroller.is-overflowing {
    text-align: left;
  }

  .app-nav-scroller.is-overflowing .app-nav-list {
    margin: 0;
  }

  .app-nav-list .nav-item {
    margin: 0 !important;
  }

  .app-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    color: #dbe2ee !important;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.45rem 0.72rem !important;
    font-weight: 600;
    line-height: 1.1;
    transition: all 0.18s ease;
  }

  .app-nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(255, 255, 255, 0.11);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
  }

  .app-nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.20) 0%, rgba(14, 165, 233, 0.14) 100%);
    border-color: rgba(96, 165, 250, 0.30);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.03),
      0 8px 20px rgba(37, 99, 235, 0.18);
  }

  .app-nav-dropdown .dropdown-toggle::after {
    margin-left: 0.35rem;
  }

  .app-nav-dropdown .dropdown-menu {
    margin-top: 0.55rem;
    padding: 0.45rem;
    min-width: 240px;
    background: rgba(10, 15, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(16px) saturate(130%);
    z-index: 1045;
  }

  .app-nav-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 10px;
    color: #dbe2ee;
    padding: 0.6rem 0.72rem;
    font-weight: 600;
    transition: all 0.18s ease;
  }

  .app-nav-dropdown .dropdown-item:hover,
  .app-nav-dropdown .dropdown-item:focus {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  }

  .app-nav-dropdown .dropdown-item.active,
  .app-nav-dropdown .dropdown-item:active {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.24) 0%, rgba(14, 165, 233, 0.18) 100%);
  }

  .app-nav-link-dashboard {
    background: linear-gradient(135deg, #f5d067 0%, #dda43a 58%, #c88e25 100%);
    color: #1c1404 !important;
    border-color: rgba(255,255,255,0.25);
    font-weight: 700;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 8px 18px rgba(207, 151, 48, 0.24);
  }

  .app-nav-link-dashboard:hover {
    color: #120d03 !important;
    background: linear-gradient(135deg, #ffe69f 0%, #d8a23b 100%);
    border-color: rgba(255,255,255,0.26);
  }

  .app-nav-link-dashboard.active {
    background: linear-gradient(135deg, #ffe59a 0%, #e6b24a 55%, #d39a34 100%);
    color: #120d03 !important;
    border-color: rgba(255,255,255,0.35);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.45),
      0 0 0 3px rgba(246, 211, 111, 0.2),
      0 10px 22px rgba(207, 151, 48, 0.28);
  }

  .app-navbar-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
  }

  .btn-custom-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f0f4fa !important;
    border-radius: 12px;
    padding: 0.45rem 0.72rem;
    font: inherit;
    cursor: pointer;
    line-height: 1.1;
    transition: all 0.18s ease;
  }

  .btn-custom-logout:hover {
    color: #fff !important;
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 8px 16px rgba(127, 29, 29, 0.16);
  }

  /* ===== Unread messages dropdown ===== */
  .app-unread-dropdown { position: relative; margin-right: 6px; list-style: none; }
  .app-unread-trigger { position: relative; padding: 0.45rem 0.65rem; display: inline-flex; align-items: center; gap: 0; }
  .app-unread-trigger:hover { background: rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.35); box-shadow: none; }
  .app-unread-trigger i { font-size: 1.1rem; }
  .app-unread-badge {
    position: absolute; top: -5px; right: -5px;
    min-width: 19px; height: 19px; padding: 0 5px;
    border-radius: 999px;
    background: #dc2626; color: #fff !important;
    font-size: 11px; font-weight: 800; line-height: 19px;
    text-align: center; box-shadow: 0 0 0 2px #1f2937;
  }

  .app-unread-menu {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: 1050;
    width: 420px; max-width: calc(100vw - 24px);
    max-height: 70vh;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22), 0 2px 6px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: none;
    overflow: hidden;
  }
  .app-unread-menu::before {
    content: ""; position: absolute; top: -7px; right: 22px;
    width: 12px; height: 12px; background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 1px solid rgba(226, 232, 240, 0.8);
  }
  .app-unread-dropdown.is-open .app-unread-menu { display: block; }

  .app-unread-header {
    padding: 14px 16px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
  }
  .app-unread-header-title {
    font-weight: 700; font-size: 14px; color: #fff !important;
    display: inline-flex; align-items: center;
  }
  .app-unread-header-title i { color: #fbbf24; }
  .app-unread-header-sub {
    font-size: 11px; font-weight: 600; color: #cbd5e1 !important;
    text-transform: uppercase; letter-spacing: .04em;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 9px; border-radius: 999px;
    white-space: nowrap;
  }

  .app-unread-body { max-height: calc(70vh - 58px); overflow-y: auto; }

  .app-unread-item {
    display: block !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #f1f5f9;
    color: #0f172a !important;
    text-decoration: none !important;
    transition: background .15s ease;
  }
  .app-unread-item:last-child { border-bottom: none; }
  .app-unread-item:hover, .app-unread-item:focus {
    background: #f8fafc;
    color: #0f172a !important;
    text-decoration: none !important;
  }
  .app-unread-item-row { display: flex; align-items: flex-start; gap: 12px; }
  .app-unread-item-kind {
    flex: 0 0 36px; width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .app-unread-item-kind--order { background: #dbeafe; color: #1d4ed8; }
  .app-unread-item-kind--item { background: #fef3c7; color: #a16207; }
  .app-unread-item-main { flex: 1 1 auto; min-width: 0; }
  .app-unread-item-top { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; flex-wrap: wrap; }
  .app-unread-item-order { font-weight: 800; font-size: 14px; color: #0f172a !important; letter-spacing: -.01em; }
  .app-unread-item-label {
    font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: #64748b !important;
    background: #f1f5f9; padding: 2px 7px; border-radius: 999px; line-height: 1.4;
  }
  .app-unread-item-count {
    min-width: 20px; padding: 2px 7px; border-radius: 999px;
    background: #dc2626; color: #fff !important;
    font-size: 11px; font-weight: 700; line-height: 1.4;
  }
  .app-unread-item-time {
    margin-left: auto;
    font-size: 11px; color: #94a3b8 !important; font-weight: 600;
    white-space: nowrap;
  }
  .app-unread-item-product {
    font-size: 12px; color: #475569 !important; margin-bottom: 3px; font-weight: 500;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .app-unread-item-preview {
    font-size: 13px; color: #334155 !important; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .app-unread-item-sender { color: #0f172a !important; font-weight: 700; margin-right: 4px; }

  .app-unread-empty {
    padding: 28px 14px; text-align: center; color: #94a3b8;
    font-size: 13px; font-weight: 500;
  }
  .app-unread-empty i { font-size: 28px; color: #cbd5e1; display: block; margin-bottom: 6px; }

  .app-unread-footer {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 11px 16px !important;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    border-top: 1px solid #e2e8f0;
    color: #1e40af !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .15s ease;
  }
  .app-unread-footer:hover, .app-unread-footer:focus {
    background: #e0e7ff;
    color: #1e3a8a !important;
  }
  .app-unread-footer i.bi-inbox-fill { color: #2563eb; font-size: 16px; }
  .app-unread-footer i.bi-arrow-right { color: #64748b; font-size: 14px; }

  /* Mobile: Dropdown im Hamburger-Flow (statisch) — vermeidet
     containing-block Probleme mit backdrop-filter der navbar.
     Problem: position: fixed wurde vom backdrop-filter-Kontext der
     navbar eingefangen → Dropdown ragte links raus. Lösung: auf
     Mobile ganz aus dem Positioning-Kontext raus, static im Hamburger. */
  @media (max-width: 991.98px) {
    .app-unread-dropdown {
      width: 100%;
      order: 99;
    }
    .app-unread-trigger {
      width: 100%;
      justify-content: flex-start;
      padding: 0.6rem 0.8rem;
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .app-unread-dropdown.is-open .app-unread-menu {
      position: static !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 0.5rem !important;
      max-height: 60vh !important;
      border-radius: 12px !important;
    }
    .app-unread-menu::before { display: none !important; }
    .app-unread-body { max-height: calc(60vh - 58px); }
    .app-unread-header { padding: 10px 14px; }
    .app-unread-header-title { font-size: 13px; }
    .app-unread-header-sub { font-size: 10px; }
    .app-unread-item { padding: 10px 14px !important; }
    .app-unread-item-order { font-size: 13px; }
    .app-unread-item-product, .app-unread-item-preview { font-size: 12px; }
    .app-unread-item-label, .app-unread-item-time { font-size: 10px; }
  }

  @media (max-width: 991.98px) {
    .app-navbar .container {
      display: flex;
      align-items: center;
    }

    .app-navbar .navbar-collapse {
      margin-top: 0.85rem;
      padding-top: 0.85rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      gap: 0;
    }

    .app-nav-scroller {
      overflow: visible;
      padding-bottom: 0;
    }

    .app-nav-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.45rem;
      width: 100%;
    }

    .app-nav-link {
      width: 100%;
      justify-content: flex-start;
      padding: 0.65rem 0.8rem !important;
      border-radius: 12px;
    }

    .app-nav-dropdown .dropdown-toggle {
      justify-content: space-between;
    }

    .app-nav-dropdown .dropdown-menu {
      position: static;
      width: 100%;
      min-width: 0;
      margin-top: 0.45rem;
      background: rgba(255,255,255,0.03);
      box-shadow: none;
    }

    .app-navbar-right {
      margin-top: 0.75rem;
      width: 100%;
      justify-content: flex-start;
    }

    .btn-custom-logout {
      width: 100%;
      justify-content: center;
      padding: 0.7rem 0.85rem;
    }
  }
