    /* ── Global Page Loading Overlay ── */
    .page-loading-overlay {
      position: fixed; inset: 0; z-index: 99999;
      background: linear-gradient(135deg, #eef3f8, #dfe8f2);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: opacity 0.3s ease;
    }
    .page-loading-overlay.fade-out {
      opacity: 0; pointer-events: none;
    }
    .page-loading-spinner {
      width: 44px; height: 44px;
      border: 4px solid #e2e8f0;
      border-top-color: #163a63;
      border-radius: 50%;
      animation: pageLoadSpin 0.8s linear infinite;
    }
    .page-loading-text {
      margin-top: 16px; font-family: system-ui, sans-serif;
      font-size: 14px; font-weight: 600; color: #475569;
      letter-spacing: 0.02em;
    }
    @keyframes pageLoadSpin {
      to { transform: rotate(360deg); }
    }
    /* Sayfa hazır olana kadar içerik gizli */
    body:not(.page-ready) main,
    body:not(.page-ready) .site-footer,
    body:not(.page-ready) .page:not(.page-loading-overlay),
    body:not(.page-ready) #content {
      visibility: hidden !important;
    }
    /* is-yurut.html: aksiyon butonları sayfa hazır olana kadar gizli */
    body:not(.page-ready) .card-footer .actions {
      visibility: hidden !important;
    }

    :root {
      --navy: #123a68;
      --navy-2: #1d558d;
      --navy-3: #2f74ba;
      --bg-1: #edf2f7;
      --bg-2: #dde6f0;
      --panel: rgba(255, 255, 255, 0.92);
      --panel-strong: #ffffff;
      --border: rgba(191, 206, 223, 0.95);
      --text: #18314f;
      --muted: #61758d;
      --success: #0f9d74;
      --danger: #dc2626;
      --footer-bg-1: #082042;
      --footer-bg-2: #06172f;
      --footer-text: #dbe6f3;
      --shadow-lg: 0 24px 55px rgba(9, 33, 63, 0.18);
      --shadow-md: 0 16px 32px rgba(9, 33, 63, 0.12);
      --shadow-sm: 0 10px 22px rgba(9, 33, 63, 0.10);

      /* Masaüstünde alanı büyüttüm */
      --content-width: 1800px;

      --hero-footer-radius: 32px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }

    html {
      overflow-x: hidden;
    }

    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(63, 116, 176, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(27, 83, 140, 0.12), transparent 24%),
        linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 48%, var(--bg-1) 100%);
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      overflow-y: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page-root {
      flex: 1;
      display: grid;
      grid-template-rows: auto auto auto;
      gap: 12px;
      padding: 10px;
      min-height: 100vh;
    }

    .top-shell,
    .page-shell,
    .footer-shell {
      width: 100%;
      max-width: var(--content-width);
      margin: 0 auto;
    }

    /* HEADER */
    .site-header {
      width: auto;
      min-height: 0;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      background: #ffffff;
      border: 1px solid #dbe4ef;
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(25, 48, 79, 0.08);
      margin: 14px 14px 0;
      flex-shrink: 0;
    }

    .hamburger-btn {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      min-width: 46px;
      border: none;
      border-radius: 14px;
      background: linear-gradient(180deg, #ffffff 0%, #edf4fa 100%);
      color: var(--navy);
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      flex-shrink: 0;
    }

    .hamburger-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 22px rgba(9, 33, 63, 0.16);
    }

    .hamburger-btn svg {
      width: 24px;
      height: 24px;
    }

    .site-header .logo-wrap {
      display: flex;
      align-items: center;
      min-width: 0;
      flex: 1;
    }

    .site-header .logo-wrap a {
      display: inline-flex;
      align-items: center;
    }

    .site-header .logo-wrap img {
      height: 96px;
      width: auto;
      max-width: 320px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 8px 14px rgba(9, 33, 63, 0.08));
    }

    .site-header .user-wrap {
      position: relative;
      flex-shrink: 0;
      visibility: hidden;
    }

    .site-header .user-trigger {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(237,244,250,0.9) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(180, 198, 218, 0.5);
      border-radius: 18px;
      padding: 8px 14px 8px 10px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 400px;
      max-width: 400px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(9, 33, 63, 0.06), 0 0 0 0 rgba(47, 116, 186, 0);
    }

    .site-header .user-trigger:hover {
      transform: translateY(-2px) scale(1.01);
      border-color: rgba(47, 116, 186, 0.35);
      box-shadow: 0 12px 28px rgba(9, 33, 63, 0.12), 0 0 0 3px rgba(47, 116, 186, 0.08);
    }

    .site-header .user-trigger .user-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e3a6e 0%, #2563eb 50%, #6366f1 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25), 0 0 0 2.5px rgba(255,255,255,0.9), 0 0 0 4px rgba(37, 99, 235, 0.12);
      transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-header .user-trigger:hover .user-avatar {
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 0 0 2.5px rgba(255,255,255,0.95), 0 0 0 5px rgba(37, 99, 235, 0.18);
    }

    .site-header .user-trigger .user-info {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
      text-align: left;
      min-width: 0;
      flex: 1;
      gap: 1px;
    }

    .site-header .user-trigger .user-name {
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    /* ── Kullanıcı e-posta ── */
    .user-email,
    .dropdown-user-email,
    .nav-drawer .drawer-user .user-email {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: #64748b;
      margin-top: 1px;
      max-width: 220px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .user-email .label-icon,
    .dropdown-user-email .label-icon {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      color: #94a3b8;
    }

    /* ── Yetki grubu rozeti ── */
    .user-role-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 1px 7px 1px 4px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1;
      white-space: nowrap;
      color: var(--role-color, #64748b);
      background: var(--role-bg, #f1f5f9);
      border: 1px solid color-mix(in srgb, var(--role-color, #64748b) 18%, transparent);
    }
    .user-role-badge .role-icon {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }
    .user-role-badge .role-label {
      margin-top: 1px;
    }
    .site-header .user-trigger .user-role,
    .dropdown-user-role,
    .nav-drawer .drawer-user .user-role {
      margin-top: 1px;
    }

    .site-header .user-trigger .user-firm,
    .site-header .user-trigger .user-branch {
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 12.5px;
      font-weight: 500;
      color: #475569;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      line-height: 1.3;
      flex: 1;
    }
    .site-header .user-trigger .user-firm .label-icon,
    .site-header .user-trigger .user-branch .label-icon {
      width: 14px; height: 14px; flex-shrink: 0; opacity: 0.75;
    }

    /* Tıklanabilir şube seçici */
    .user-branch-clickable {
      cursor: pointer !important;
      border-radius: 6px;
      padding: 3px 8px !important;
      margin: -3px -8px;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    .user-branch-clickable:hover {
      background: rgba(23,58,108,0.10);
      color: #173a6c !important;
    }
    .user-branch-clickable::after {
      content: ' ✎';
      font-size: 10px;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .user-branch-clickable:hover::after {
      opacity: 0.7;
    }

    .dropdown-branch-clickable {
      cursor: pointer !important;
      border-radius: 6px;
      padding: 3px 8px !important;
      margin: -3px -8px;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-branch-clickable:hover {
      background: rgba(23,58,108,0.06);
      color: #173a6c !important;
    }
    .dropdown-branch-clickable::after {
      content: ' ✎';
      font-size: 10px;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .dropdown-branch-clickable:hover::after {
      opacity: 0.7;
    }

    .branch-placeholder {
      font-style: italic;
      opacity: 0.7;
    }

    /* ── Workflow Grup Rozetleri ── */
    .user-wf-groups {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 3px;
      margin-top: 1px;
    }
    .wf-group-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 1px 6px 1px 3px;
      border-radius: 999px;
      font-size: 9px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      color: #475569;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
    }
    .wf-group-icon {
      width: 11px;
      height: 11px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
    }
    .wf-group-icon svg {
      width: 11px;
      height: 11px;
    }
    .wf-group-label {
      margin-top: 0.5px;
    }

    /* Header: küçük göster, dropdown/drawer: tam göster */
    .site-header .user-trigger .user-wf-groups-wrap {
      max-width: 100%;
      overflow: hidden;
      flex: 1;
    }
    .site-header .user-trigger .user-wf-groups-wrap .user-wf-groups {
      flex-wrap: nowrap;
    }

    /* Tıklanabilir firma seçici */
    .user-firm-clickable {
      cursor: pointer !important;
      border-radius: 6px;
      padding: 3px 8px !important;
      margin: -3px -8px;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    .user-firm-clickable:hover {
      background: rgba(23,58,108,0.10);
      color: #173a6c !important;
    }
    .user-firm-clickable::after {
      content: ' ✎';
      font-size: 10px;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .user-firm-clickable:hover::after {
      opacity: 0.7;
    }
    .dropdown-firm-clickable {
      cursor: pointer !important;
      border-radius: 6px;
      padding: 3px 8px !important;
      margin: -3px -8px;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-firm-clickable:hover {
      background: rgba(23,58,108,0.06);
      color: #173a6c !important;
    }
    .dropdown-firm-clickable::after {
      content: ' ✎';
      font-size: 10px;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .dropdown-firm-clickable:hover::after {
      opacity: 0.7;
    }

    .site-header .user-trigger .user-chevron {
      color: #6b7f96;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(107, 127, 150, 0.08);
      border-radius: 50%;
      padding: 2px;
    }

    .site-header .user-wrap.is-open .user-trigger .user-chevron {
      transform: rotate(180deg);
    }

    .site-header .user-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      min-width: 260px;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(214, 225, 238, 0.6);
      border-radius: 20px;
      box-shadow:
        0 4px 6px rgba(9, 33, 63, 0.04),
        0 12px 24px rgba(9, 33, 63, 0.08),
        0 24px 48px rgba(9, 33, 63, 0.12);
      padding: 6px;
      z-index: 100;
      opacity: 0;
      transform: translateY(-8px) scale(0.97);
      transform-origin: top right;
      pointer-events: none;
      transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                  transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .site-header .user-dropdown.is-open {
      display: block;
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .site-header .user-dropdown .dropdown-header-bg {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(135deg, rgba(30,58,110,0.06) 0%, rgba(99,102,241,0.06) 100%);
      border-radius: 20px 20px 0 0;
      pointer-events: none;
    }

    .site-header .user-dropdown .dropdown-user-info {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 14px 14px;
      position: relative;
    }

    .site-header .user-dropdown .dropdown-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e3a6e 0%, #2563eb 50%, #6366f1 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: 700;
      font-size: 19px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25), 0 0 0 3px rgba(255,255,255,0.95), 0 0 0 5px rgba(37, 99, 235, 0.1);
    }

    .site-header .user-dropdown .dropdown-user-detail {
      display: flex;
      flex-direction: column;
      min-width: 0;
      gap: 2px;
    }

    .site-header .user-dropdown .dropdown-user-name {
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      letter-spacing: -0.01em;
    }

    .site-header .user-dropdown .dropdown-user-email {
      font-size: 11.5px;
    }

    .site-header .user-dropdown .dropdown-firm-name,
    .site-header .user-dropdown .dropdown-branch-name {
      font-size: 12px;
      color: #475569;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin-top: 3px;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(241, 245, 249, 0.7);
      padding: 4px 8px;
      border-radius: 8px;
      border: 1px solid rgba(226, 232, 240, 0.6);
      transition: background 0.2s;
    }
    .site-header .user-dropdown .dropdown-firm-name:hover,
    .site-header .user-dropdown .dropdown-branch-name:hover {
      background: rgba(226, 232, 240, 0.7);
    }
    .site-header .user-dropdown .dropdown-firm-name .label-icon,
    .site-header .user-dropdown .dropdown-branch-name .label-icon {
      width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7;
    }

    .site-header .user-dropdown .dropdown-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(148,163,184,0.3) 50%, transparent 100%);
      margin: 6px 12px;
    }

    .site-header .user-dropdown .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 11px 14px;
      border: none;
      background: transparent;
      font-size: 14px;
      font-family: inherit;
      cursor: pointer;
      color: var(--text);
      border-radius: 14px;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-header .user-dropdown .dropdown-item:hover {
      background: #f0f5fb;
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(9, 33, 63, 0.06);
    }

    .site-header .user-dropdown .dropdown-item .dropdown-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #64748b;
    }

    .site-header .user-dropdown .logout-btn {
      color: var(--danger);
      font-weight: 600;
    }

    .site-header .user-dropdown .logout-btn .dropdown-icon {
      color: var(--danger);
    }

    .site-header .user-dropdown .logout-btn:hover {
      background: #fef2f2;
      box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
    }

    /* DRAWER */
    .nav-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 18, 35, 0.48);
      z-index: 500;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      pointer-events: none;
    }

    .nav-drawer-overlay.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .nav-drawer {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      width: min(300px, 86vw);
      background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
      box-shadow: 8px 0 36px rgba(0,0,0,0.16);
      z-index: 501;
      transform: translateX(-100%);
      transition: transform 0.28s ease;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .nav-drawer.is-open {
      transform: translateX(0);
    }

    .nav-drawer-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 12px;
      background: #eef3f8;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .nav-drawer-close:hover {
      background: #e3ecf6;
      transform: rotate(90deg);
    }

    .nav-drawer-close svg {
      width: 20px;
      height: 20px;
    }

    .nav-drawer-header {
      padding: 20px 56px 18px 20px;
      border-bottom: 1px solid #dde7f2;
      background: linear-gradient(135deg, #f8fbff 0%, #edf4fb 100%);
    }

    .nav-drawer-header .logo-wrap img {
      height: 56px;
      max-width: 180px;
    }

    .nav-drawer-body {
      flex: 1;
      overflow: auto;
      padding: 16px 0;
    }

    .nav-drawer .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 0 12px;
    }

    .nav-drawer .drawer-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 14px;
      color: var(--text);
      font-weight: 600;
      font-size: 15px;
      border-radius: 14px;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .nav-drawer .drawer-nav a:hover {
      background: #e9f1fa;
      color: var(--navy);
      transform: translateX(3px);
    }

    .nav-drawer .drawer-nav a .nav-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      color: #5f738c;
    }

    .nav-drawer .drawer-user {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px 20px 16px;
      margin: 12px 16px 8px;
      border: 1px solid #d9e5f1;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff 0%, #f2f7fc 100%);
      box-shadow: var(--shadow-sm);
    }

    .nav-drawer .drawer-user .user-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .nav-drawer .drawer-user .drawer-user-detail {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 0;
      width: 100%;
    }

    .nav-drawer .drawer-user .user-name {
      font-weight: 700;
      color: var(--text);
      font-size: 14px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-align: center;
    }

    .nav-drawer .drawer-user .user-firm,
    .nav-drawer .drawer-user .user-branch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-weight: 400;
    }
    .nav-drawer .drawer-user .user-firm {
      font-size: 12px;
      color: #64748b;
      margin-top: 2px;
    }
    .nav-drawer .drawer-user .user-branch {
      font-size: 11px;
      color: #94a3b8;
      margin-top: 1px;
    }
    .nav-drawer .drawer-user .user-firm .label-icon,
    .nav-drawer .drawer-user .user-branch .label-icon {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      opacity: 0.7;
    }

    .nav-drawer .drawer-menu {
      display: flex;
      flex-direction: column;
      padding: 8px 12px 0;
    }

    .nav-drawer .drawer-menu .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      width: 100%;
      padding: 13px 14px;
      border: none;
      background: transparent;
      font-size: 14px;
      font-family: inherit;
      cursor: pointer;
      color: var(--text);
      border-radius: 14px;
      transition: background 0.2s ease, transform 0.2s ease;
      text-align: left;
    }

    .nav-drawer .drawer-menu .dropdown-item:hover {
      background: #f2f6fb;
      transform: translateX(3px);
    }

    .nav-drawer .drawer-menu .dropdown-item .dropdown-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #64748b;
    }

    .nav-drawer .drawer-menu .logout-btn {
      color: var(--danger);
      font-weight: 600;
    }

    .nav-drawer .drawer-menu .logout-btn .dropdown-icon {
      color: var(--danger);
    }

    .nav-drawer .drawer-menu .logout-btn:hover {
      background: #fef2f2;
    }

    /* MAIN */
    main {
      width: 100%;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: stretch;
      padding-top: 10px;
    }

    .page-shell {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-banner {
      position: relative;
      overflow: hidden;
      width: 100%;
      border-radius: var(--hero-footer-radius);
      padding: 22px 30px;
      background:
        linear-gradient(135deg, rgba(15, 47, 87, 0.97) 0%, rgba(24, 73, 127, 0.94) 55%, rgba(37, 99, 166, 0.90) 100%);
      color: #fff;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.12);
      isolation: isolate;
      display: flex;
      align-items: center;
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      right: -60px;
      top: -70px;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.20), transparent 65%);
      z-index: -1;
    }

    .hero-banner::after {
      content: "";
      position: absolute;
      left: -70px;
      bottom: -100px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 68%);
      z-index: -1;
    }

    .hero-content {
      max-width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.16);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .hero-badge svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .hero-title {
      margin: 0 0 10px;
      font-size: clamp(2rem, 2.6vw, 3rem);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .hero-text {
      margin: 0;
      max-width: 1100px;
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255,255,255,0.92);
    }

    .hero-text + .hero-text {
      margin-top: 8px;
    }

    .content-shell {
      border-radius: 30px;
      padding: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(248,251,255,0.95) 100%);
      border: 1px solid rgba(198, 214, 230, 0.82);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .section-heading {
      margin-bottom: 14px;
    }

    .section-heading h2 {
      margin: 0;
      font-size: 1.45rem;
      color: var(--navy);
      letter-spacing: -0.02em;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .dashboard-card {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,252,0.97) 100%);
      border: 1px solid rgba(207, 221, 235, 0.95);
      box-shadow:
        0 14px 24px rgba(15, 47, 87, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      overflow: hidden;
      min-height: 134px;
    }

    .dashboard-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.34), transparent 40%);
      pointer-events: none;
    }

    .dashboard-card::after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,166,0.08), transparent 65%);
      pointer-events: none;
    }

    .dashboard-card:hover {
      transform: translateY(-5px);
      box-shadow:
        0 22px 38px rgba(15, 47, 87, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.9);
      border-color: rgba(37, 99, 166, 0.30);
    }

    .card-icon-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-shrink: 0;
      min-width: 66px;
    }

    .card-icon {
      width: 60px;
      height: 60px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        0 14px 20px rgba(15, 47, 87, 0.16);
      transition: transform 0.28s ease;
      flex-shrink: 0;
    }

    .dashboard-card:hover .card-icon {
      transform: scale(1.06) rotate(-3deg);
    }

    .card-icon svg {
      width: 28px;
      height: 28px;
    }

    .card-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card-title {
      display: inline-block;
      margin: 0 0 7px;
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .card-desc {
      margin: 0;
      font-size: 13px;
      line-height: 1.6;
      color: #5f7389;
      max-width: 95%;
      word-break: break-word;
    }

    .card-arrow {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy-2);
      transition: gap 0.25s ease, color 0.25s ease;
      flex-wrap: wrap;
    }

    .dashboard-card:hover .card-arrow {
      gap: 12px;
      color: var(--navy-3);
    }

    .card-arrow svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .card-start .card-icon {
      background: linear-gradient(135deg, #1c4d82 0%, #2d7ec8 100%);
    }

    .card-pending .card-icon {
      background: linear-gradient(135deg, #375f95 0%, #5b8ec8 100%);
    }

    .card-admin .card-icon {
      background: linear-gradient(135deg, #243b64 0%, #4f76ae 100%);
    }

    .card-complete .card-icon {
      background: linear-gradient(135deg, #0f7b7a 0%, #19a39f 100%);
    }

    .qa-count {
      display: none;
      min-width: 34px;
      padding: 4px 8px;
      text-align: center;
      border-radius: 999px;
      background: linear-gradient(135deg, #e7fff7 0%, #c9f7e5 100%);
      color: var(--success);
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 10px 16px rgba(15, 157, 116, 0.16);
    }

    .dashboard-card.has-pending .qa-count,
    #bekleyenCard.has-pending .qa-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      animation: badgePulse 1.4s ease-in-out infinite;
    }

    .dashboard-card.has-pending,
    #bekleyenCard.has-pending {
      border-color: rgba(15, 157, 116, 0.38);
      box-shadow:
        0 18px 28px rgba(15, 157, 116, 0.12),
        0 0 0 0 rgba(15, 157, 116, 0.28);
      animation: pendingGlow 2s ease-in-out infinite;
    }

    .dashboard-card.has-pending .card-title,
    #bekleyenCard.has-pending .card-title {
      color: var(--success);
    }

    .dashboard-card.has-pending .card-icon,
    #bekleyenCard.has-pending .card-icon {
      background: linear-gradient(135deg, #0f8a67 0%, #18b489 100%);
      animation: iconFloat 1.5s ease-in-out infinite;
    }

    @keyframes pendingGlow {
      0%, 100% {
        box-shadow:
          0 18px 28px rgba(15, 157, 116, 0.12),
          0 0 0 0 rgba(15, 157, 116, 0.25);
      }
      50% {
        box-shadow:
          0 22px 34px rgba(15, 157, 116, 0.16),
          0 0 0 12px rgba(15, 157, 116, 0);
      }
    }

    @keyframes badgePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-3px) scale(1.04); }
    }

    /* FOOTER */
    .site-footer {
      width: 100%;
      background: #0f172a;
      color: #cbd5e1;
      margin-top: auto;
      padding: 0 24px 24px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      text-align: center;
      font-size: 13px;
      color: #94a3b8;
      white-space: nowrap;
    }

    /* TABLET */
    @media (max-width: 991px) {
      .page-root {
        grid-template-rows: auto auto auto;
      }

      .site-header {
        min-height: 84px;
        padding: 12px 18px;
      }

      .site-header .logo-wrap img {
        height: 60px;
        max-width: 220px;
      }

      .hero-banner {
        padding: 22px;
        border-radius: 26px;
      }

      .site-footer {
        border-radius: 0;
      }

      .content-shell {
        padding: 18px;
        border-radius: 24px;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .page-root {
        padding: 10px;
        gap: 10px;
      }

      .site-header {
        min-height: 0;
        padding: 10px 16px;
        border-radius: 18px;
        margin: 10px 10px 0;
      }

      .hamburger-btn {
        display: inline-flex;
      }

      .site-header .user-wrap {
        display: none !important;
      }

      .site-header .logo-wrap {
        justify-content: flex-end;
      }

      .site-header .logo-wrap img {
        height: 52px;
        max-width: 160px;
      }

      .hero-banner {
        padding: 20px 16px;
        border-radius: 24px;
      }

      .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 10px;
      }

      .hero-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
      }

      .hero-text {
        font-size: 13px;
        line-height: 1.7;
      }

      .content-shell {
        padding: 16px;
        border-radius: 24px;
      }

      .section-heading {
        margin-bottom: 14px;
      }

      .section-heading h2 {
        font-size: 1.2rem;
      }

      .dashboard-grid {
        gap: 14px;
      }

      .dashboard-card {
        min-height: auto;
        padding: 16px;
        gap: 14px;
        border-radius: 20px;
      }

      .card-icon-wrap {
        min-width: 56px;
      }

      .card-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
      }

      .card-icon svg {
        width: 24px;
        height: 24px;
      }

      .card-title {
        font-size: 1rem;
        margin-bottom: 6px;
      }

      .card-desc {
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
      }

      .card-arrow {
        margin-top: 10px;
        font-size: 12px;
      }

      .site-footer {
        padding: 0 16px 16px;
        border-radius: 0;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

    @media (max-width: 520px) {
      .page-root {
        padding: 8px;
      }

      .site-header {
        padding: 10px 12px;
        gap: 10px;
      }

      .hamburger-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
      }

      .site-header .logo-wrap img {
        height: 46px;
        max-width: 140px;
      }

      .hero-banner {
        padding: 18px 14px;
      }

      .hero-title {
        font-size: 1.55rem;
      }

      .hero-text {
        font-size: 12.5px;
        line-height: 1.7;
      }

      .content-shell {
        padding: 14px;
      }

      .dashboard-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 14px;
        gap: 12px;
      }

      .card-icon-wrap {
        align-items: flex-start;
        justify-content: flex-start;
        min-width: 50px;
      }

      .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
      }

      .card-icon svg {
        width: 22px;
        height: 22px;
      }

      .card-title {
        font-size: 0.96rem;
      }

      .card-desc {
        font-size: 12.5px;
      }

      .card-arrow {
        font-size: 12px;
      }

      .site-footer {
        border-radius: 0;
        padding: 0 12px 12px;
      }

      .footer-bottom {
        font-size: 12.5px;
      }
    }

    @media (max-width: 380px) {
      .site-header .logo-wrap img {
        max-width: 118px;
        height: 40px;
      }

      .hero-title {
        font-size: 1.4rem;
      }

      .hero-badge {
        font-size: 11px;
      }

      .section-heading h2 {
        font-size: 1.05rem;
      }

      .card-title {
        font-size: 0.92rem;
      }

      .card-desc,
      .card-arrow,
      .footer-bottom {
        font-size: 12px;
      }
    }

    /* ── Branch Popup (global — layout-shared.js tarafından oluşturulur) ── */
    .branch-popup-overlay {
      position: fixed; inset: 0; background: rgba(15,23,42,0.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
      z-index: 600; display: none; align-items: center; justify-content: center; padding: 20px;
      opacity: 0; transition: opacity 0.25s ease;
    }
    .branch-popup-overlay.is-open { display: flex; opacity: 1; }
    .branch-popup {
      background: #fff; border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 8px 24px rgba(22,58,99,0.08);
      width: 100%; max-width: 520px; height: 660px;
      display: flex; flex-direction: column; overflow: hidden;
      transform: translateY(12px) scale(0.98); opacity: 0;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
    }
    .branch-popup-overlay.is-open .branch-popup { transform: translateY(0) scale(1); opacity: 1; }
    .branch-popup-header {
      padding: 20px 24px; border-bottom: none; flex-shrink: 0;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      background: linear-gradient(135deg, var(--navy) 0%, #1e4d7b 100%);
    }
    .branch-popup-header .header-title-wrap { display: flex; align-items: center; gap: 12px; }
    .branch-popup-header .header-title-wrap .header-icon {
      width: 36px; height: 36px; padding: 7px; border-radius: 10px;
      background: rgba(255,255,255,0.15); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .branch-popup-header .header-title-wrap .header-icon svg { width: 22px; height: 22px; }
    .branch-popup-header h3 { margin: 0; font-size: 18px; font-weight: 600; color: #fff; }
    .branch-popup-firm-info {
      padding: 10px 24px; font-size: 13px; color: rgba(255,255,255,0.8);
      background: linear-gradient(135deg, #1e4d7b 0%, var(--navy) 100%);
      border-bottom: none; flex-shrink: 0; display: flex; align-items: center; gap: 8px;
    }
    .branch-popup-firm-info .firm-info-icon { width: 16px; height: 16px; color: rgba(255,255,255,0.7); flex-shrink: 0; }
    .branch-popup-firm-info strong { color: #fff; }
    .branch-popup-firm-info span { color: rgba(255,255,255,0.85); }
    .branch-popup-firm-info .branch-count-badge {
      margin-left: auto; font-size: 11px; font-weight: 500;
      background: rgba(255,255,255,0.15); padding: 2px 10px;
      border-radius: 12px; color: rgba(255,255,255,0.75); white-space: nowrap;
    }
    .branch-popup-close {
      width: 34px; height: 34px; border: none; border-radius: 10px;
      background: rgba(255,255,255,0.15); color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s;
    }
    .branch-popup-close:hover { background: rgba(255,255,255,0.25); }
    .branch-popup-close svg { width: 18px; height: 18px; }
    .branch-popup-search-wrap { padding: 16px 20px; flex-shrink: 0; background: #fff; }
    .branch-popup-search-inner {
      display: flex; align-items: center; gap: 10px;
      background: #f1f5f9; border: 2px solid transparent; border-radius: 12px;
      padding: 0 14px; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .branch-popup-search-inner:focus-within { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(22,58,99,0.08); }
    .branch-popup-search-inner .search-icon { width: 18px; height: 18px; color: #94a3b8; flex-shrink: 0; transition: color 0.2s; }
    .branch-popup-search-inner:focus-within .search-icon { color: var(--navy); }
    .branch-popup-search {
      padding: 11px 0; border: none; background: transparent;
      font-size: 14px; width: 100%; box-sizing: border-box; outline: none; flex: 1; font-family: inherit; color: var(--text);
    }
    .branch-popup-search::placeholder { color: #94a3b8; }

    /* ── Branch filter chips ── */
    .branch-filter-bar {
      display: flex; flex-wrap: wrap; gap: 8px;
      padding: 0 20px 12px; flex-shrink: 0;
    }
    .branch-filter-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 14px; border-radius: 20px;
      border: 1.5px solid #e2e8f0; background: #f8fafc;
      font-size: 13px; font-weight: 500; color: #64748b;
      cursor: pointer; font-family: inherit;
      transition: all 0.2s ease;
    }
    .branch-filter-chip:hover {
      border-color: #cbd5e1; background: #f1f5f9;
    }
    .branch-filter-chip.is-active {
      border-color: var(--navy); background: linear-gradient(135deg, #e8eeff, #dbeafe);
      color: var(--navy); font-weight: 600;
    }
    .branch-filter-chip .chip-icon { width: 16px; height: 16px; flex-shrink: 0; }
    .branch-filter-chip .chip-icon svg { width: 100%; height: 100%; }
    .branch-filter-chip .chip-label { white-space: nowrap; }

    .branch-popup-list {
      flex: 1; overflow-y: auto; overflow-x: hidden; padding: 8px 16px 16px;
      min-height: 0; display: flex; flex-direction: column; gap: 6px;
    }
    .branch-popup-list::-webkit-scrollbar { width: 6px; }
    .branch-popup-list::-webkit-scrollbar-track { background: transparent; }
    .branch-popup-list::-webkit-scrollbar-thumb { background: rgba(22,58,99,0.15); border-radius: 3px; }
    .branch-popup-list::-webkit-scrollbar-thumb:hover { background: rgba(22,58,99,0.25); }
    .branch-popup-item {
      display: flex; align-items: flex-start; gap: 12px; width: 100%; min-width: 0;
      padding: 13px 16px; font-size: 14px; text-align: left;
      border: 2px solid transparent; border-radius: 12px; background: #f8fafc;
      color: var(--text); cursor: pointer;
      transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
      font-family: inherit; box-sizing: border-box;
    }
    .branch-popup-item:hover { background: #fff; border-color: rgba(22,58,99,0.2); box-shadow: 0 2px 10px rgba(22,58,99,0.08); transform: translateY(-1px); }
    .branch-popup-item:active { transform: translateY(0); }
    .branch-popup-item.is-selected {
      background: linear-gradient(135deg, #e8eeff 0%, #dbeafe 100%);
      border-color: var(--navy); color: var(--navy); font-weight: 600; box-shadow: 0 2px 12px rgba(22,58,99,0.12);
    }
    .branch-popup-item .item-icon {
      flex-shrink: 0; width: 32px; height: 32px; margin-top: 2px; border-radius: 8px;
      background: rgba(22,58,99,0.06); color: #64748b;
      display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s;
    }
    .branch-popup-item .item-icon svg { width: 16px; height: 16px; }
    .branch-popup-item:hover .item-icon { background: rgba(22,58,99,0.1); color: var(--navy); }
    .branch-popup-item.is-selected .item-icon { background: rgba(22,58,99,0.15); color: var(--navy); }
    .branch-popup-item .item-num {
      flex-shrink: 0; width: 26px; height: 26px; margin-top: 3px; border-radius: 8px; background: rgba(22,58,99,0.06);
      display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #64748b;
    }
    .branch-popup-item.is-selected .item-num { background: rgba(22,58,99,0.15); color: var(--navy); }
    .branch-popup-item .item-text-wrap {
      flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px;
    }
    .branch-popup-item .item-main-row {
      display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0;
    }
    .branch-popup-item .item-desc {
      flex: 1; min-width: 0; display: block; overflow-wrap: break-word; word-break: break-word; white-space: normal; line-height: 1.4;
      font-weight: 600;
    }
    .branch-popup-item .item-code {
      font-size: 11px; font-family: ui-monospace, Consolas, monospace; color: #94a3b8; letter-spacing: 0.02em;
    }
    .branch-ambar-badge {
      display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
      padding: 4px 10px 4px 8px; border-radius: 999px;
      font-size: 11px; font-weight: 800; letter-spacing: 0.03em;
      color: #0f2f52;
      background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 55%, #7dd3fc 100%);
      border: 1px solid rgba(22, 58, 99, 0.28);
      box-shadow: 0 1px 3px rgba(22, 58, 99, 0.1);
      line-height: 1.2;
    }
    .branch-ambar-badge--popup { padding: 3px 9px 3px 6px; font-size: 10px; gap: 4px; }
    .branch-ambar-badge-icon { flex-shrink: 0; opacity: 0.9; }
    .branch-ambar-badge-lbl { font-weight: 700; font-size: 0.92em; opacity: 0.88; text-transform: uppercase; }
    .branch-ambar-badge-num { font-variant-numeric: tabular-nums; }
    .branch-popup-item.is-selected .branch-ambar-badge {
      background: linear-gradient(145deg, #fff 0%, #e0f2fe 100%);
      border-color: var(--navy);
      box-shadow: 0 1px 4px rgba(22, 58, 99, 0.15);
    }
    .branch-popup-empty { padding: 40px 16px; font-size: 14px; color: #94a3b8; text-align: center; flex-shrink: 0; }

    /* ── SignalR Toast Bildirimleri ── */
    .signalr-toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none;
    }
    .signalr-toast {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 36px 14px 20px;
      border-radius: 14px;
      background: linear-gradient(135deg, #0f2f57 0%, #1e4d7b 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      box-shadow: 0 12px 36px rgba(15, 47, 87, 0.28), 0 4px 12px rgba(0,0,0,0.10);
      border: 1px solid rgba(255,255,255,0.12);
      transform: translateX(120%);
      opacity: 0;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
      max-width: 520px;
      pointer-events: auto;
    }
    .signalr-toast.show {
      transform: translateX(0);
      opacity: 1;
    }
    .signalr-toast-close {
      position: absolute;
      top: 8px;
      right: 8px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      cursor: pointer;
      padding: 2px 6px;
      line-height: 1;
      border-radius: 4px;
      transition: color 0.15s, background 0.15s;
    }
    .signalr-toast-close:hover {
      color: #fff;
      background: rgba(255,255,255,0.15);
    }
    .signalr-toast-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      color: #fbbf24;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .signalr-toast-icon svg {
      width: 22px;
      height: 22px;
    }
    .signalr-toast-text {
      line-height: 1.4;
    }
    @media (max-width: 520px) {
      .signalr-toast-container {
        right: 10px;
        left: 10px;
      }
      .signalr-toast {
        max-width: none;
        font-size: 13px;
        padding: 12px 36px 12px 16px;
        border-radius: 12px;
      }
    }
