﻿    html {
      height: 100%;
    }

    body {
      min-height: 100vh;
      height: 100%;
    }

    .automio__runtime-body {
      display: flex;
      flex-direction: column;
      max-width: 100%;
      background: #ffffff;
      color: #09090b;
    }

    .dark .automio__runtime-body {
      background: #000000;
      color: #ffffff;
    }

	    #root {
	      flex: 1;
	      min-height: 0;
	      overflow-x: hidden;
	      overflow-y: auto;
	      overscroll-behavior: contain;
	      -webkit-overflow-scrolling: touch;
	    }

	    .automio__nav-autohide #root {
	      scroll-padding-top: var(--navbar-height, 0px);
	    }

	    /* Override Tailwind h-screen inside React root so it fills
	       the runtime viewport computed for the shell. */
    #root [class~="h-screen"],
    #root [class~="h-dvh"],
    #root [class~="h-svh"] {
      height: 100% !important;
    }

    .automio__error-container {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
    }

    .automio__error-box {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      color: #dc2626;
      font-size: 1rem;
      max-width: 500px;
      text-align: center;
    }

    .automio__error-box a {
      display: inline-block;
      margin-top: 12px;
      color: inherit;
      text-decoration: underline;
      font-weight: 600;
    }

    .automio__error-box a:hover {
      opacity: 0.9;
    }

    .automio__auth-error-banner {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 16px auto;
      width: min(960px, calc(100% - 32px));
      border: 1px solid #f59e0b;
      border-radius: 10px;
      background: #fffbeb;
      color: #78350f;
      padding: 14px 16px;
      box-shadow: 0 8px 20px rgba(120, 53, 15, 0.08);
      position: relative;
      z-index: 20;
    }

    .automio__auth-error-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #f59e0b;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .automio__auth-error-content {
      min-width: 0;
      flex: 1;
    }

    .automio__auth-error-title {
      font-weight: 700;
      font-size: 14px;
      line-height: 1.4;
    }

    .automio__auth-error-message {
      margin-top: 3px;
      font-size: 14px;
      line-height: 1.55;
    }

    .automio__auth-error-close {
      border: none;
      background: transparent;
      color: #92400e;
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
      padding: 0 2px;
    }

    .automio__auth-error-close:hover {
      color: #451a03;
    }

    .dark .automio__auth-error-banner {
      border-color: rgba(245, 158, 11, 0.45);
      background: rgba(245, 158, 11, 0.12);
      color: #fde68a;
      box-shadow: none;
    }

    .dark .automio__auth-error-close {
      color: #fcd34d;
    }

    .dark .automio__auth-error-close:hover {
      color: #fef3c7;
    }

    .automio__activate-form {
      margin-top: 16px;
    }

    .automio__activate-btn {
      border: none;
      background: #1a1a2e;
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
    }

	    .automio__top-nav {
	      display: flex;
	      align-items: center;
	      justify-content: flex-start;
	      gap: 16px;
      padding: 12px 20px;
      border-bottom: 1px solid #e5e7eb;
      background: #ffffff;
      position: sticky;
	      top: 0;
	      z-index: 30;
	    }

	    .automio__nav-hover-zone,
	    .automio__nav-reveal-toggle {
	      display: none;
	    }

	    @media (min-width: 900px) {
	      .automio__nav-autohide .automio__top-nav {
	        position: fixed;
	        left: 0;
	        right: 0;
	        top: 0;
	        z-index: 90;
	        transform: translateY(calc(-100% - 2px));
	        transition: transform 0.22s ease, box-shadow 0.22s ease;
	        will-change: transform;
	      }

	      .automio__nav-autohide.automio__nav-open .automio__top-nav,
	      .automio__nav-autohide .automio__top-nav:focus-within {
	        transform: translateY(0);
	        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
	      }

	      .dark .automio__nav-autohide.automio__nav-open .automio__top-nav,
	      .dark .automio__nav-autohide .automio__top-nav:focus-within {
	        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
	      }

	      .automio__nav-autohide .automio__nav-hover-zone {
	        display: block;
	        position: fixed;
	        top: 0;
	        left: 0;
	        right: 0;
	        height: 12px;
	        z-index: 80;
	        background: transparent;
	      }

	      .automio__nav-autohide .automio__nav-reveal-toggle {
	        display: inline-flex;
	        align-items: center;
	        justify-content: center;
	        position: fixed;
	        top: 6px;
	        left: 50%;
	        width: 32px;
	        height: 24px;
	        border: 1px solid #d1d5db;
	        border-radius: 999px;
	        background: rgba(255, 255, 255, 0.92);
	        color: #111827;
	        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
	        cursor: pointer;
	        opacity: 0.96;
	        transform: translateX(-50%);
	        transition: opacity 0.16s ease, transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
	        z-index: 85;
	      }

	      .automio__nav-autohide.automio__nav-reveal-idle .automio__nav-reveal-toggle {
	        opacity: 0.28;
	      }

	      .automio__nav-autohide .automio__nav-reveal-toggle:hover,
	      .automio__nav-autohide .automio__nav-reveal-toggle:focus-visible {
	        border-color: #9ca3af;
	        background: #ffffff;
	        opacity: 0.96;
	        outline: none;
	        transform: translateX(-50%) translateY(2px);
	      }

	      .automio__nav-reveal-icon {
	        width: 16px;
	        height: 16px;
	        display: block;
	      }

	      .automio__nav-reveal-badge {
	        position: absolute;
	        top: -6px;
	        right: -7px;
	        min-width: 17px;
	        height: 17px;
	        border-radius: 999px;
	        border: 2px solid #ffffff;
	        background: #2563eb;
	        color: #ffffff;
	        font-size: 10px;
	        font-weight: 800;
	        line-height: 13px;
	        padding: 0 4px;
	        text-align: center;
	        box-sizing: border-box;
	      }

	      .automio__nav-autohide.automio__nav-has-notifications:not(.automio__nav-reveal-idle) .automio__nav-reveal-toggle {
	        opacity: 0.96;
	      }

	      .automio__nav-autohide.automio__nav-reveal-idle.automio__nav-has-notifications .automio__nav-reveal-toggle {
	        opacity: 0.68;
	      }

	      .automio__nav-autohide.automio__nav-notification-pulse .automio__nav-reveal-toggle {
	        animation: automio__nav-reveal-pulse 1.1s ease-in-out 3;
	      }

	      @keyframes automio__nav-reveal-pulse {
	        0%,
	        100% {
	          box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
	          transform: translateX(-50%);
	        }
	        45% {
	          box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.2), 0 8px 24px rgba(15, 23, 42, 0.18);
	          transform: translateX(-50%) translateY(2px);
	        }
	      }

	      .dark .automio__nav-autohide .automio__nav-reveal-toggle {
	        border-color: #4b5563;
	        background: rgba(17, 24, 39, 0.94);
	        color: #f9fafb;
	        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.36);
	      }

	      .dark .automio__nav-autohide .automio__nav-reveal-toggle:hover,
	      .dark .automio__nav-autohide .automio__nav-reveal-toggle:focus-visible {
	        border-color: #6b7280;
	        background: #111827;
	      }

	      .dark .automio__nav-reveal-badge {
	        border-color: #111827;
	        background: #60a5fa;
	        color: #0f172a;
	      }

	      @media (prefers-reduced-motion: reduce) {
	        .automio__nav-autohide .automio__top-nav,
	        .automio__nav-autohide .automio__nav-reveal-toggle {
	          transition: none;
	        }

	        .automio__nav-autohide.automio__nav-notification-pulse .automio__nav-reveal-toggle {
	          animation: none;
	        }
	      }
	    }

    .automio__mobile-toggle {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
    }

    .automio__mobile-controls {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .automio__mobile-toggle-icon {
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      position: relative;
      transition: background 0.2s ease;
    }

    .automio__mobile-toggle-icon::before,
    .automio__mobile-toggle-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform 0.2s ease;
    }

    .automio__mobile-toggle-icon::before {
      top: -6px;
    }

    .automio__mobile-toggle-icon::after {
      top: 6px;
    }

    .automio__mobile-toggle[aria-expanded="true"] .automio__mobile-toggle-icon {
      background: transparent;
    }

    .automio__mobile-toggle[aria-expanded="true"] .automio__mobile-toggle-icon::before {
      transform: translateY(6px) rotate(45deg);
    }

    .automio__mobile-toggle[aria-expanded="true"] .automio__mobile-toggle-icon::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    .dark .automio__mobile-toggle {
      border-color: #4b5563;
      background: #111827;
      color: #f9fafb;
    }

    .dark .automio__top-nav {
      border-bottom-color: #374151;
      background: #111827;
    }

    .automio__empty-nav-message {
      color: #6b7280;
      font-size: 0.875rem;
      line-height: 1.25rem;
    }

    .automio__nav-left,
    .automio__nav-center,
    .automio__nav-right {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .automio__nav-left {
      flex: 0 1 auto;
      gap: 10px;
    }

    .automio__app-avatar {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      box-sizing: border-box;
      color: #111827;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      overflow: hidden;
    }

    .dark .automio__app-avatar {
      background: #1a1a2e;
      border-color: #374151;
      color: #fff;
    }

    .automio__app-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 7px;
      display: block;
    }

    .automio__app-title {
      font-weight: 700;
      color: #111827;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .automio__app-title-link {
      color: inherit;
      text-decoration: none;
    }

    .automio__app-title-link:hover {
      text-decoration: underline;
    }

    .dark .automio__app-title {
      color: #f3f4f6;
    }

    .automio__nav-center-wrap {
      flex: 1;
      min-width: 0;
      position: relative;
      margin-left: 8px;
    }

    .automio__nav-center-wrap::before,
    .automio__nav-center-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 40px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
      z-index: 1;
    }

    .automio__nav-center-wrap::before {
      left: 0;
      background: linear-gradient(to right, #ffffff, transparent);
    }

    .automio__nav-center-wrap::after {
      right: 0;
      background: linear-gradient(to left, #ffffff, transparent);
    }

    .dark .automio__nav-center-wrap::before {
      background: linear-gradient(to right, #111827, transparent);
    }

    .dark .automio__nav-center-wrap::after {
      background: linear-gradient(to left, #111827, transparent);
    }

    .automio__nav-center-wrap.has-overflow-left::before {
      opacity: 1;
    }

    .automio__nav-center-wrap.has-overflow-right::after {
      opacity: 1;
    }

    .automio__nav-center {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
    }

    .automio__nav-center::-webkit-scrollbar {
      display: none;
    }

    .automio__ui-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 10px 6px 10px;
      border-radius: 8px;
      border-bottom: 2px solid transparent;
      color: #374151;
      text-decoration: none;
      font-size: 13px;
      background: transparent;
    }

    .automio__ui-link-label {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .automio__ui-private-icon {
      width: 13px;
      height: 13px;
      flex: 0 0 auto;
      opacity: 0.72;
    }

    .dark .automio__ui-link {
      color: #d1d5db;
      background: transparent;
    }

    .automio__ui-link:hover {
      background: #f3f4f6;
      color: #111827;
    }

    .dark .automio__ui-link:hover {
      background: #1f2937;
      color: #ffffff;
    }

    .automio__ui-link.automio__active {
      border-bottom-color: #111827;
      border-radius: 0;
      color: #111827;
    }

    .dark .automio__ui-link.automio__active {
      border-bottom-color: #f9fafb;
      color: #f9fafb;
    }

    .automio__nav-right {
      flex: 0 0 auto;
      justify-content: flex-end;
      margin-left: auto;
    }

    .automio__auth-btn {
      display: inline-flex;
      align-items: center;
      padding: 0 12px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid #d1d5db;
      color: #111827;
      background: #fff;
    }

    .dark .automio__auth-btn {
      border-color: #4b5563;
      color: #e5e7eb;
      background: #111827;
    }

    .automio__auth-btn.automio__logout {
      border-color: #fca5a5;
      color: #b91c1c;
      background: transparent;
      margin-left: 8px;
    }

    .automio__auth-btn.automio__logout:hover {
      border-color: #ef4444;
      background: #fef2f2;
    }

    .dark .automio__auth-btn.automio__logout {
      border-color: #7f1d1d;
      color: #fca5a5;
      background: transparent;
    }

    .dark .automio__auth-btn.automio__logout:hover {
      border-color: #b91c1c;
      background: rgba(127, 29, 29, 0.25);
    }

    .automio__theme-btn {
      width: 34px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      line-height: 1;
    }

    .dark .automio__theme-btn {
      border-color: #4b5563;
      background: #111827;
      color: #f9fafb;
    }

    .automio__theme-icon-svg {
      width: 16px;
      height: 16px;
      display: block;
      fill: currentColor;
    }

    .automio__messages-btn {
      width: 34px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      margin-left: 8px;
      cursor: pointer;
      position: relative;
      padding: 0;
    }

    .automio__messages-btn:hover {
      border-color: #9ca3af;
    }

    .dark .automio__messages-btn {
      border-color: #4b5563;
      background: #111827;
      color: #f9fafb;
    }

    .automio__messages-icon {
      width: 17px;
      height: 17px;
      display: block;
    }

    .automio__messages-badge {
      position: absolute;
      right: -6px;
      top: -6px;
      min-width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #2563eb;
      color: #fff;
      border: 2px solid #fff;
      padding: 0 5px;
      font-size: 10px;
      font-weight: 800;
      line-height: 14px;
      text-align: center;
    }

    .dark .automio__messages-badge {
      border-color: #111827;
    }

    .automio__messages-btn--mobile {
      margin-left: 0;
      margin-right: 8px;
    }

    .automio__mobile-link-button {
      width: 100%;
      border: 0;
      text-align: left;
      cursor: pointer;
    }

    .automio__messages-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.28);
      z-index: 300;
    }

    .automio__messages-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 310;
      width: min(760px, 100vw);
      height: 100vh;
      height: 100dvh;
      background: #fff;
      border-left: 1px solid #e5e7eb;
      box-shadow: -18px 0 36px rgba(15, 23, 42, 0.18);
      transform: translateX(100%);
      transition: transform 180ms ease;
      pointer-events: none;
    }

    .automio__messages-drawer.is-open {
      transform: translateX(0);
      pointer-events: auto;
    }

    .dark .automio__messages-drawer {
      background: #111827;
      border-left-color: #374151;
      box-shadow: -18px 0 36px rgba(0, 0, 0, 0.5);
    }

    .automio__messages-panel {
      height: 100%;
      min-height: 0;
      display: flex;
      flex-direction: column;
      color: #111827;
    }

    .dark .automio__messages-panel {
      color: #f9fafb;
    }

    .automio__messages-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-bottom: 1px solid #e5e7eb;
    }

    .dark .automio__messages-head {
      border-bottom-color: #374151;
    }

    .automio__messages-title {
      min-width: 0;
      font-size: 15px;
      font-weight: 800;
      color: inherit;
    }

    .automio__messages-subtitle {
      display: block;
      margin-top: 2px;
      color: #6b7280;
      font-size: 12px;
      font-weight: 600;
    }

    .dark .automio__messages-subtitle {
      color: #9ca3af;
    }

    .automio__messages-head-actions {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .automio__messages-inbox-link,
    .automio__messages-close,
    .automio__messages-send,
    .automio__messages-attach,
    .automio__messages-remove-file {
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #fff;
      color: #111827;
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      padding: 8px 10px;
      text-decoration: none;
    }

    .automio__messages-close {
      width: 34px;
      height: 34px;
      padding: 0;
      font-size: 18px;
    }

    .automio__messages-inbox-link:hover,
    .automio__messages-close:hover,
    .automio__messages-send:hover:not(:disabled),
    .automio__messages-attach:hover,
    .automio__messages-remove-file:hover {
      border-color: #9ca3af;
      background: #f9fafb;
    }

    .dark .automio__messages-inbox-link,
    .dark .automio__messages-close,
    .dark .automio__messages-send,
    .dark .automio__messages-attach,
    .dark .automio__messages-remove-file {
      border-color: #4b5563;
      background: #111827;
      color: #f9fafb;
    }

    .automio__messages-body {
      min-height: 0;
      flex: 1;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
    }

    .automio__messages-list {
      min-height: 0;
      overflow-y: auto;
      border-right: 1px solid #e5e7eb;
      background: #f9fafb;
    }

    .dark .automio__messages-list {
      border-right-color: #374151;
      background: #0f172a;
    }

    .automio__messages-thread {
      display: grid;
      grid-template-columns: 8px minmax(0, 1fr);
      gap: 8px;
      width: 100%;
      border: 0;
      border-bottom: 1px solid #e5e7eb;
      background: transparent;
      color: inherit;
      cursor: pointer;
      padding: 12px;
      text-align: left;
    }

    .automio__messages-thread:hover,
    .automio__messages-thread.is-active {
      background: #fff;
    }

    .automio__messages-thread:focus {
      outline: 2px solid #2563eb;
      outline-offset: -2px;
    }

    .dark .automio__messages-thread {
      border-bottom-color: #374151;
    }

    .dark .automio__messages-thread:hover,
    .dark .automio__messages-thread.is-active {
      background: #1f2937;
    }

    .automio__messages-unread-dot {
      width: 7px;
      height: 7px;
      margin-top: 6px;
      border-radius: 999px;
      background: #2563eb;
    }

    .automio__messages-thread-main,
    .automio__messages-detail {
      min-width: 0;
    }

    .automio__messages-thread-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .automio__messages-thread-name {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 13px;
      font-weight: 800;
    }

    .automio__messages-time {
      flex-shrink: 0;
      color: #6b7280;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .dark .automio__messages-time {
      color: #9ca3af;
    }

    .automio__messages-thread-meta,
    .automio__messages-preview {
      margin-top: 4px;
      color: #6b7280;
      font-size: 12px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .dark .automio__messages-thread-meta,
    .dark .automio__messages-preview {
      color: #d1d5db;
    }

    .automio__messages-detail {
      min-height: 0;
      display: flex;
      flex-direction: column;
      background: #fff;
    }

    .dark .automio__messages-detail {
      background: #111827;
    }

    .automio__messages-detail-head {
      padding: 12px 14px;
      border-bottom: 1px solid #e5e7eb;
      font-size: 13px;
      font-weight: 800;
    }

    .dark .automio__messages-detail-head {
      border-bottom-color: #374151;
    }

    .automio__messages-log {
      min-height: 0;
      flex: 1;
      overflow-y: auto;
      padding: 14px;
    }

    .automio__message {
      max-width: 84%;
      margin-bottom: 10px;
    }

    .automio__message.is-own {
      margin-left: auto;
    }

    .automio__message-author {
      margin-bottom: 3px;
      color: #6b7280;
      font-size: 11px;
      font-weight: 800;
    }

    .dark .automio__message-author {
      color: #9ca3af;
    }

    .automio__message-bubble {
      border-radius: 10px;
      background: #f3f4f6;
      padding: 9px 10px;
      font-size: 13px;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    .automio__message.is-own .automio__message-bubble {
      background: #2563eb;
      color: #fff;
    }

    .dark .automio__message-bubble {
      background: #1f2937;
    }

    .automio__message-attachment {
      display: inline-flex;
      max-width: 100%;
      margin-top: 7px;
      border-radius: 8px;
      background: rgba(37, 99, 235, 0.1);
      color: #1d4ed8;
      padding: 6px 8px;
      font-size: 12px;
      font-weight: 800;
      text-decoration: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dark .automio__message-attachment {
      color: #bfdbfe;
      background: rgba(96, 165, 250, 0.16);
    }

    .automio__messages-composer {
      border-top: 1px solid #e5e7eb;
      padding: 12px 14px;
    }

    .dark .automio__messages-composer {
      border-top-color: #374151;
    }

    .automio__messages-textarea {
      width: 100%;
      min-height: 84px;
      resize: vertical;
      box-sizing: border-box;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #fff;
      color: #111827;
      font: inherit;
      font-size: 13px;
      line-height: 1.45;
      padding: 9px 10px;
    }

    .dark .automio__messages-textarea {
      border-color: #4b5563;
      background: #0f172a;
      color: #f9fafb;
    }

    .automio__messages-composer-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 9px;
    }

    .automio__messages-file {
      min-width: 0;
      color: #6b7280;
      font-size: 12px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dark .automio__messages-file {
      color: #9ca3af;
    }

    .automio__messages-send {
      background: #2563eb;
      border-color: #2563eb;
      color: #fff;
    }

    .automio__messages-send:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .automio__messages-empty,
    .automio__messages-loading,
    .automio__messages-error {
      padding: 18px 14px;
      color: #6b7280;
      font-size: 13px;
      line-height: 1.45;
      text-align: center;
    }

    .dark .automio__messages-empty,
    .dark .automio__messages-loading,
    .dark .automio__messages-error {
      color: #9ca3af;
    }

    @media (max-width: 720px) {
      .automio__messages-body {
        grid-template-columns: 1fr;
      }

      .automio__messages-list {
        max-height: 34vh;
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
      }

      .dark .automio__messages-list {
        border-bottom-color: #374151;
      }

      .automio__messages-inbox-link {
        display: none;
      }
    }

    .automio__mobile-menu {
      display: none;
      position: absolute;
      left: 12px;
      right: 12px;
      top: calc(100% + 8px);
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      padding: 12px;
      z-index: 60;
    }

    .automio__mobile-menu.is-open {
      display: block;
    }

    .dark .automio__mobile-menu {
      background: #111827;
      border-color: #374151;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .automio__mobile-section {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .automio__mobile-app-head {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 8px;
    }

    .automio__mobile-app-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      max-width: 100%;
    }

    .automio__mobile-app-name {
      font-size: 15px;
      font-weight: 700;
      color: #111827;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 62vw;
    }

    .dark .automio__mobile-app-name {
      color: #f3f4f6;
    }

    .automio__mobile-section-title {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      color: #6b7280;
      margin-bottom: 2px;
      padding-left: 2px;
    }

    .dark .automio__mobile-section-title {
      color: #9ca3af;
    }

    .automio__mobile-section+.automio__mobile-section {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #e5e7eb;
    }

    .dark .automio__mobile-section+.automio__mobile-section {
      border-top-color: #374151;
    }

    .automio__mobile-link {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      text-align: left;
      padding: 10px 4px 8px 4px;
      border-radius: 10px;
      border-bottom: 2px solid transparent;
      color: #374151;
      text-decoration: none;
      font-size: 14px;
      background: transparent;
    }

    .automio__mobile-link.automio__active {
      border-bottom-color: #111827;
      border-radius: 0;
      color: #111827;
    }

    .dark .automio__mobile-link {
      color: #e5e7eb;
      background: transparent;
    }

    .dark .automio__mobile-link.automio__active {
      border-bottom-color: #f9fafb;
      color: #f9fafb;
    }

    .automio__mobile-link:hover {
      background: #f3f4f6;
    }

    .dark .automio__mobile-link:hover {
      background: #1f2937;
    }

    .automio__mobile-logout-btn {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-weight: 700;
      padding: 11px 14px;
      border-radius: 10px;
    }

    .automio__mobile-empty {
      padding: 4px 2px;
      font-size: 13px;
      color: #6b7280;
    }

    .dark .automio__mobile-empty {
      color: #9ca3af;
    }

	    @media (max-width: 899px) {
	      .automio__top-nav {
	        display: grid;
	        grid-template-columns: minmax(0, 1fr) auto;
	        align-items: center;
	        position: sticky;
	        padding: 6px 12px;
	        justify-content: stretch;
	        column-gap: 12px;
	        row-gap: 0;
	      }

	      .automio__nav-autohide .automio__top-nav {
	        position: fixed;
	        left: 0;
	        right: 0;
	        top: 0;
	        z-index: 90;
	        transform: translateY(0);
	        transition: transform 0.22s ease, box-shadow 0.22s ease;
	        will-change: transform;
	      }

	      .automio__nav-autohide.automio__mobile-nav-hidden .automio__top-nav {
	        transform: translateY(calc(-100% - 2px));
	        box-shadow: none;
	      }

	      .automio__nav-autohide #root {
	        padding-top: var(--navbar-height, 0px);
	        box-sizing: border-box;
	      }

	      .automio__nav-left {
	        width: 100%;
	        min-width: 0;
	      }

	      .automio__mobile-toggle {
	        margin-left: 0;
      }

	      .automio__mobile-theme-btn {
	        margin-right: 0;
	      }

	      .automio__mobile-controls {
	        justify-self: end;
	        justify-content: flex-end;
	        margin-left: 0;
	      }

	      .automio__app-title {
	        max-width: none;
	      }

	      .automio__nav-center-wrap,
	      .automio__nav-center,
	      .automio__nav-right {
	        display: none;
	      }

      .automio__mobile-link {
        border-left: 2px solid transparent;
        border-bottom: none;
        padding-left: 10px;
      }

      .automio__mobile-link.automio__active {
        border-bottom: none;
        border-left-color: #111827;
        color: #111827;
      }

      .dark .automio__mobile-link.automio__active {
        border-left-color: #f9fafb;
        color: #f9fafb;
      }

      .automio__mobile-section .automio__lang-picker {
        width: 100%;
        margin-right: 0;
      }

      .automio__mobile-section .automio__lang-current {
        width: 100%;
        display: flex;
      }

      .automio__mobile-section .automio__lang-menu {
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
      }

	      .automio__auth-btn.automio__logout.automio__mobile-logout-btn {
	        margin-left: 0;
	      }

	      @media (prefers-reduced-motion: reduce) {
	        .automio__nav-autohide .automio__top-nav {
	          transition: none;
	        }
	      }
	    }

    @media (min-width: 900px) {

      .automio__mobile-toggle,
      .automio__mobile-menu,
      .automio__mobile-controls {
        display: none !important;
      }
    }

    #automio__nav-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: #3b82f6;
      z-index: 9999;
      width: 0%;
      opacity: 0;
      pointer-events: none;
      transition: width 0.4s ease-out, opacity 0.15s ease;
    }

    #automio__nav-progress.is-loading {
      opacity: 1;
    }

    .automio__integrations-menu {
      position: relative;
      margin-right: 8px;
    }

    .automio__integrations-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0 12px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid #d1d5db;
      color: #111827;
      background: #fff;
      cursor: pointer;
    }

    .automio__integrations-trigger:hover {
      border-color: #9ca3af;
    }

    .automio__integrations-trigger--warning {
      position: relative;
    }

    .automio__integrations-trigger--warning::after {
      content: "";
      position: absolute;
      top: 4px;
      right: 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #f97316;
      border: 1.5px solid #fff;
    }

    .dark .automio__integrations-trigger {
      border-color: #4b5563;
      color: #e5e7eb;
      background: #111827;
    }

    .dark .automio__integrations-trigger--warning::after {
      border-color: #111827;
    }

    .automio__integrations-caret {
      font-size: 10px;
      opacity: 0.8;
    }

    .automio__integrations-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: 100%;
      margin-top: 0;
      min-width: 360px;
      max-height: 340px;
      overflow-y: auto;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      z-index: 50;
      padding: 6px;
    }

    .automio__integrations-menu::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 10px;
    }

    .automio__integrations-menu:hover .automio__integrations-dropdown {
      display: block;
    }

    .dark .automio__integrations-dropdown {
      background: #111827;
      border-color: #374151;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .automio__integrations-toolbar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      margin-bottom: 8px;
      position: sticky;
      top: 0;
      z-index: 1;
      background: inherit;
      padding-bottom: 6px;
    }

    .automio__integrations-global {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 8px 10px;
      margin-bottom: 8px;
      background: #fff;
    }

    .automio__integrations-global-main {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .automio__integrations-global-title {
      font-size: 12px;
      font-weight: 700;
      color: #111827;
    }

    .automio__integrations-global-help {
      font-size: 11px;
      color: #6b7280;
      line-height: 1.35;
    }

    .automio__integrations-search {
      width: 100%;
      min-width: 0;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 7px 10px;
      font-size: 12px;
      color: #111827;
      background: #fff;
      outline: none;
    }

    .automio__integrations-search:focus {
      border-color: #6b7280;
    }

    .automio__integrations-filter {
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 600;
      color: #111827;
      background: #fff;
      outline: none;
    }

    .dark .automio__integrations-search,
    .dark .automio__integrations-filter {
      border-color: #4b5563;
      background: #0f172a;
      color: #e5e7eb;
    }

    .dark .automio__integrations-global {
      border-color: #374151;
      background: #111827;
    }

    .dark .automio__integrations-global-title {
      color: #f3f4f6;
    }

    .dark .automio__integrations-global-help {
      color: #9ca3af;
    }

    .automio__integration-list {
      display: block;
    }

    .automio__integration-item {
      padding: 8px 2px 10px;
      border-bottom: 1px solid #e5e7eb;
    }

    .automio__integration-item:last-child {
      border-bottom: none;
      padding-bottom: 2px;
    }

    .dark .automio__integration-item {
      border-bottom-color: #374151;
    }

    .automio__integration-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }

    .automio__integration-head {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      flex: 1;
      min-width: 0;
    }

    .automio__integration-head:hover .automio__integration-name {
      text-decoration: underline;
    }

    .automio__integration-active-label {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }

    .automio__integration-active-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.08);
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .automio__integration-active-dot--active {
      background: #22c55e;
    }

    .automio__integration-active-dot--inactive {
      background: #ef4444;
    }

    .dark .automio__integration-active-dot {
      border-color: rgba(15, 23, 42, 0.95);
      box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.2);
    }

    .automio__integration-icon {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      object-fit: cover;
      border: 1px solid #e5e7eb;
      background: #fff;
      flex-shrink: 0;
    }

    .dark .automio__integration-icon {
      border-color: #4b5563;
      background: #0f172a;
    }

    .automio__integration-name {
      font-size: 13px;
      font-weight: 700;
    }

    .automio__integration-accounts {
      margin-left: 2px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .automio__integration-account-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 12px;
      padding: 5px 2px;
      border-radius: 6px;
    }

    .automio__integration-account-main {
      min-width: 0;
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      color: #4b5563;
    }

    .dark .automio__integration-account-main {
      color: #9ca3af;
    }

    .automio__integration-branch {
      width: 18px;
      flex: 0 0 auto;
      font-size: 12px;
      color: #6b7280;
    }

    .dark .automio__integration-branch {
      color: #9ca3af;
    }

    .automio__integration-account-name {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #111827;
      font-size: 12px;
      font-weight: 500;
    }

    .dark .automio__integration-account-name {
      color: #f3f4f6;
    }

    .automio__integration-account-actions {
      display: inline-flex;
      align-items: center;
      gap: 0;
      flex: 0 0 auto;
    }

    .automio__integration-toggle {
      appearance: none;
      width: 34px;
      height: 20px;
      margin: 0;
      border-radius: 999px;
      background: #d1d5db;
      position: relative;
      cursor: pointer;
      border: none;
      outline: none;
      transition: background 0.2s ease;
    }

    .automio__integration-toggle::after {
      content: "";
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top: 3px;
      left: 3px;
      transition: transform 0.2s ease;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .automio__integration-toggle:checked {
      background: #2563eb;
    }

    .automio__integration-toggle:checked::after {
      transform: translateX(14px);
    }

    .automio__integration-toggle:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .dark .automio__integration-toggle {
      background: #4b5563;
    }

    .dark .automio__integration-toggle:checked {
      background: #3b82f6;
    }

    .automio__integrations-empty {
      padding: 10px;
      font-size: 12px;
      color: #6b7280;
    }

    .dark .automio__integrations-empty {
      color: #9ca3af;
    }

    .automio__notifications-menu {
      position: relative;
      margin-right: 8px;
    }

    .automio__notifications-trigger {
      width: 34px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      position: relative;
    }

    .automio__notifications-trigger:hover,
    .automio__notifications-menu.is-open .automio__notifications-trigger {
      border-color: #9ca3af;
      background: #f9fafb;
    }

    .dark .automio__notifications-trigger {
      border-color: #4b5563;
      background: #111827;
      color: #e5e7eb;
    }

    .dark .automio__notifications-trigger:hover,
    .dark .automio__notifications-menu.is-open .automio__notifications-trigger {
      border-color: #6b7280;
      background: #1f2937;
    }

    .automio__notifications-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .automio__notifications-dot {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #2563eb;
      border: 1.5px solid #fff;
    }

    .dark .automio__notifications-dot {
      border-color: #111827;
    }

    .automio__notifications-badge {
      position: absolute;
      right: -6px;
      top: -6px;
      min-width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #2563eb;
      color: #fff;
      border: 2px solid #fff;
      padding: 0 5px;
      font-size: 10px;
      font-weight: 800;
      line-height: 14px;
      text-align: center;
    }

    .dark .automio__notifications-badge {
      border-color: #111827;
    }

    .automio__notifications-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      width: min(420px, calc(100vw - 24px));
      max-height: min(70vh, 520px);
      overflow: hidden;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
      z-index: 220;
    }

    .automio__notifications-menu.is-open .automio__notifications-dropdown {
      display: flex;
      flex-direction: column;
    }

    .dark .automio__notifications-dropdown {
      border-color: #374151;
      background: #111827;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .automio__notifications-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-bottom: 1px solid #e5e7eb;
    }

    .dark .automio__notifications-head {
      border-bottom-color: #374151;
    }

    .automio__notifications-title {
      min-width: 0;
      font-size: 13px;
      font-weight: 800;
      color: #111827;
    }

    .dark .automio__notifications-title {
      color: #f9fafb;
    }

    .automio__notifications-count {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      font-weight: 600;
      color: #6b7280;
    }

    .dark .automio__notifications-count {
      color: #9ca3af;
    }

    .automio__notifications-mark-all {
      flex-shrink: 0;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #fff;
      color: #111827;
      cursor: pointer;
      font-size: 12px;
      font-weight: 700;
      padding: 7px 9px;
    }

    .automio__notifications-mark-all:hover:not(:disabled) {
      border-color: #9ca3af;
      background: #f9fafb;
    }

    .automio__notifications-mark-all:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .dark .automio__notifications-mark-all {
      border-color: #4b5563;
      background: #111827;
      color: #e5e7eb;
    }

    .automio__notifications-tabs {
      display: flex;
      gap: 6px;
      padding: 10px 14px;
      border-bottom: 1px solid #e5e7eb;
    }

    .dark .automio__notifications-tabs {
      border-bottom-color: #374151;
    }

    .automio__notifications-tab {
      border: 1px solid #d1d5db;
      border-radius: 999px;
      background: #fff;
      color: #374151;
      cursor: pointer;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 10px;
    }

    .automio__notifications-tab.is-active {
      border-color: #2563eb;
      background: rgba(37, 99, 235, 0.1);
      color: #1d4ed8;
    }

    .dark .automio__notifications-tab {
      border-color: #4b5563;
      background: #111827;
      color: #d1d5db;
    }

    .dark .automio__notifications-tab.is-active {
      border-color: #60a5fa;
      background: rgba(96, 165, 250, 0.16);
      color: #bfdbfe;
    }

    .automio__notifications-list {
      min-height: 0;
      overflow-y: auto;
    }

    .automio__notification-item {
      display: grid;
      grid-template-columns: 10px 1fr auto;
      gap: 8px;
      width: 100%;
      border: 0;
      border-bottom: 1px solid #e5e7eb;
      background: transparent;
      color: inherit;
      padding: 12px 14px;
      text-align: left;
      cursor: pointer;
    }

    .automio__notification-item:hover {
      background: #f9fafb;
    }

    .automio__notification-item:focus {
      outline: 2px solid #2563eb;
      outline-offset: -2px;
    }

    .automio__notification-item:last-child {
      border-bottom: 0;
    }

    .automio__notification-item--unread {
      background: rgba(37, 99, 235, 0.05);
    }

    .dark .automio__notification-item {
      border-bottom-color: #374151;
    }

    .dark .automio__notification-item:hover {
      background: #1f2937;
    }

    .dark .automio__notification-item--unread {
      background: rgba(96, 165, 250, 0.12);
    }

    .automio__notification-unread-dot {
      width: 7px;
      height: 7px;
      margin-top: 6px;
      border-radius: 999px;
      background: #2563eb;
    }

    .automio__notification-main {
      min-width: 0;
    }

    .automio__notification-title {
      font-size: 13px;
      font-weight: 800;
      color: #111827;
      overflow-wrap: anywhere;
    }

    .dark .automio__notification-title {
      color: #f9fafb;
    }

    .automio__notification-body {
      margin-top: 3px;
      color: #4b5563;
      font-size: 12px;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    .dark .automio__notification-body {
      color: #d1d5db;
    }

    .automio__notification-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 8px;
      color: #6b7280;
      font-size: 11px;
      font-weight: 600;
    }

    .dark .automio__notification-meta {
      color: #9ca3af;
    }

    .automio__notification-pill {
      max-width: 100%;
      border-radius: 6px;
      background: #f3f4f6;
      padding: 2px 6px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dark .automio__notification-pill {
      background: #1f2937;
    }

    .automio__notification-time {
      white-space: nowrap;
      color: #6b7280;
      font-size: 11px;
      font-weight: 700;
    }

    .dark .automio__notification-time {
      color: #9ca3af;
    }

    .automio__notification-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 9px;
    }

    .automio__notification-action {
      max-width: 100%;
      border-radius: 8px;
      background: #2563eb;
      color: #fff;
      padding: 5px 8px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 800;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .automio__notification-action:hover {
      background: #1d4ed8;
    }

    .automio__notifications-empty {
      padding: 18px 14px;
      color: #6b7280;
      font-size: 12px;
      line-height: 1.45;
      text-align: center;
    }

    .dark .automio__notifications-empty {
      color: #9ca3af;
    }

    .automio__notifications-menu--mobile {
      margin-right: 0;
    }

    .automio__notifications-menu--mobile .automio__notifications-dropdown {
      position: fixed;
      left: 12px;
      right: 12px;
      top: calc(100% + 8px);
      width: auto;
    }

    .automio__lang-picker {
      position: relative;
      margin-right: 8px;
    }

    .automio__lang-current {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-width: 70px;
      height: 34px;
      padding: 0 10px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #fff;
      color: #111827;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      line-height: 1;
    }

    .automio__lang-current:hover {
      border-color: #9ca3af;
    }

    .automio__lang-flag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .automio__lang-flag-svg {
      width: 18px;
      height: 12px;
      display: block;
      border-radius: 2px;
      border: 1px solid rgba(0, 0, 0, 0.15);
    }

    .automio__lang-caret {
      margin-left: auto;
      font-size: 10px;
      opacity: 0.8;
    }

    .automio__lang-menu {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 6px);
      min-width: 120px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      padding: 6px;
      z-index: 80;
    }

    .automio__lang-picker.is-open .automio__lang-menu {
      display: block;
    }

    .automio__lang-form {
      margin: 0;
    }

    .automio__lang-option {
      width: 100%;
      border: none;
      border-radius: 8px;
      background: transparent;
      color: #374151;
      padding: 8px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      text-align: left;
      line-height: 1;
    }

    .automio__lang-option:hover {
      background: #f3f4f6;
      color: #111827;
    }

    .automio__lang-option.automio__lang-option-active {
      background: #111827;
      color: #fff;
    }

    .dark .automio__lang-current {
      border-color: #4b5563;
      background: #111827;
      color: #e5e7eb;
    }

    .dark .automio__lang-current:hover {
      border-color: #6b7280;
    }

    .dark .automio__lang-menu {
      border-color: #374151;
      background: #111827;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .dark .automio__lang-option {
      color: #d1d5db;
    }

    .dark .automio__lang-option:hover {
      background: #1f2937;
      color: #fff;
    }

    .dark .automio__lang-option.automio__lang-option-active {
      background: #f9fafb;
      color: #111827;
    }

    .automio__credits-menu {
      position: relative;
      margin-right: 8px;
    }

    .automio__credits-trigger {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2px 6px;
      padding: 4px 10px;
      height: 34px;
      box-sizing: border-box;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      background: #fff;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: #111827;
      line-height: 1.2;
      min-width: 64px;
    }

    .automio__credits-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .automio__credits-trigger:hover {
      border-color: #9ca3af;
    }

    .dark .automio__credits-trigger {
      border-color: #4b5563;
      background: #111827;
      color: #e5e7eb;
    }

    .dark .automio__credits-trigger:hover {
      border-color: #6b7280;
    }

    .automio__credits-amount {
      font-weight: 700;
      font-size: 13px;
    }

    .automio__credits-bar-wrap {
      width: 100%;
      height: 4px;
      background: #e5e7eb;
      border-radius: 2px;
      overflow: hidden;
    }

    .dark .automio__credits-bar-wrap {
      background: #374151;
    }

    .automio__credits-bar {
      height: 100%;
      border-radius: 2px;
      transition: width 0.3s ease, background 0.3s ease;
    }

    .automio__credits-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      min-width: 280px;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      padding: 16px;
      z-index: 200;
    }

    .dark .automio__credits-dropdown {
      background: #1f2937;
      border-color: #374151;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .automio__credits-menu.is-open .automio__credits-dropdown {
      display: block;
    }

    .automio__credits-stats {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .automio__credits-stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #374151;
    }

    .dark .automio__credits-stat-row {
      color: #d1d5db;
    }

    .automio__credits-stat-row strong {
      font-weight: 700;
      color: #111827;
    }

    .dark .automio__credits-stat-row strong {
      color: #f9fafb;
    }

    .automio__credits-progress-full {
      width: 100%;
      height: 6px;
      background: #e5e7eb;
      border-radius: 3px;
      overflow: hidden;
      margin: 4px 0 2px;
    }

    .dark .automio__credits-progress-full {
      background: #374151;
    }

    .automio__credits-progress-bar {
      height: 100%;
      border-radius: 3px;
      transition: width 0.3s ease, background 0.3s ease;
    }

    .automio__credits-stat-sub {
      font-size: 11px;
      color: #6b7280;
      text-align: right;
    }

    .dark .automio__credits-stat-sub {
      color: #9ca3af;
    }

    .automio__credits-separator {
      border: none;
      border-top: 1px solid #e5e7eb;
      margin: 12px 0;
    }

    .dark .automio__credits-separator {
      border-top-color: #374151;
    }

    .automio__credits-limit-section {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .automio__credits-limit-label {
      font-size: 11px;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .dark .automio__credits-limit-label {
      color: #9ca3af;
    }

    .automio__credits-limit-display {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #374151;
    }

    .dark .automio__credits-limit-display {
      color: #d1d5db;
    }

    .automio__credits-limit-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .automio__credits-input {
      flex: 1;
      padding: 4px 8px;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      font-size: 13px;
      background: #fff;
      color: #111827;
      outline: none;
    }

    .automio__credits-input:focus {
      border-color: #6b7280;
    }

    .dark .automio__credits-input {
      background: #111827;
      border-color: #4b5563;
      color: #f9fafb;
    }

    .automio__credits-edit-btn,
    .automio__credits-save-btn,
    .automio__credits-cancel-btn {
      padding: 3px 8px;
      border-radius: 5px;
      border: 1px solid #d1d5db;
      background: #f9fafb;
      color: #374151;
      cursor: pointer;
      font-size: 12px;
      line-height: 1.4;
    }

    .automio__credits-save-btn {
      border-color: #22c55e;
      color: #16a34a;
      background: #f0fdf4;
    }

    .automio__credits-cancel-btn {
      border-color: #d1d5db;
    }

    .dark .automio__credits-edit-btn,
    .dark .automio__credits-save-btn,
    .dark .automio__credits-cancel-btn {
      background: #374151;
      border-color: #4b5563;
      color: #d1d5db;
    }

    .dark .automio__credits-save-btn {
      border-color: #22c55e;
      color: #4ade80;
      background: #052e16;
    }

    .automio__credits-topup-link {
      display: block;
      text-align: center;
      padding: 8px 12px;
      border-radius: 8px;
      background: #111827;
      color: #f9fafb;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.15s ease;
    }

    .automio__credits-topup-link:hover {
      background: #1f2937;
    }

    .dark .automio__credits-topup-link {
      background: #f9fafb;
      color: #111827;
    }

    .dark .automio__credits-topup-link:hover {
      background: #e5e7eb;
    }

    .automio__mobile-credits {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
