
    .note-editable ul {
      list-style-type: disc !important;
      margin-left: 1.5rem !important;
      padding-left: 1.5rem !important;
    }

    .note-editable ol {
      list-style-type: decimal !important;
      margin-left: 1.5rem !important;
      padding-left: 1.5rem !important;
    }

    .note-editable blockquote {
      border-left: 4px solid #ccc !important;
      padding-left: 1rem !important;
      color: #555 !important;
      font-style: italic !important;
    }

    .note-editable p {
      margin-bottom: 0.75rem !important;
    }













    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

    body {
      font-family: 'Inter', sans-serif;
    }

    .chat-gradient {
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    }

    .message-bubble-user {
      background: #2563eb;
      border-radius: 20px 20px 4px 20px;
    }

    .message-bubble-bot {
      background: #f3f4f6;
      border-radius: 4px 20px 20px 20px;
    }

    .quick-response-btn {
      border: 2px solid #2563eb;
      border-radius: 25px;
      transition: all 0.3s ease;
    }

    .quick-response-btn:hover {
      background: #2563eb;
      color: white;
    }

    .quick-response-btn.filled {
      background: #2563eb;
      color: white;
    }

    .send-btn {
      background: #2563eb;
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    }

    .chat-container {
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .rating-btn {
      transition: all 0.2s ease;
    }

    .rating-btn:hover {
      transform: scale(1.1);
    }

    .rating-btn.active {
      color: #2563eb;
    }

    /* Added styles for chat widget toggle and animations */
    .chat-widget-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .chat-toggle-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 999;
    }

    .chat-toggle-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
    }

    .chat-toggle-btn i {
      color: white;
      font-size: 24px;
    }

    .chat-widget-container {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 400px;
      max-width: calc(100vw - 40px);
      transform-origin: bottom right;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .chat-widget-container.hidden {
      opacity: 0;
      transform: scale(0.8);
      pointer-events: none;
    }

    .chat-widget-container.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Typing indicator animation */
    .typing-indicator {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 12px 16px;
    }

    .typing-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #9ca3af;
      animation: typing 1.4s infinite;
    }

    .typing-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes typing {

      0%,
      60%,
      100% {
        transform: translateY(0);
        opacity: 0.7;
      }

      30% {
        transform: translateY(-10px);
        opacity: 1;
      }
    }

    .close-chat-btn {
      transition: all 0.2s ease;
    }

    .close-chat-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    /* Added emoji picker styles */
    .emoji-picker {
      position: absolute;
      bottom: 70px;
      right: 20px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      padding: 12px;
      display: none;
      max-width: 300px;
      z-index: 1001;
    }

    .emoji-picker.show {
      display: block;
    }

    .emoji-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 8px;
      max-height: 200px;
      overflow-y: auto;
    }

    .emoji-item {
      font-size: 24px;
      cursor: pointer;
      padding: 4px;
      border-radius: 4px;
      transition: all 0.2s;
      text-align: center;
    }

    .emoji-item:hover {
      background: #f3f4f6;
      transform: scale(1.2);
    }

    .file-preview {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: #f3f4f6;
      border-radius: 8px;
      margin-bottom: 8px;
    }

    .file-preview-close {
      cursor: pointer;
      color: #ef4444;
      font-weight: bold;
    }








    .note-editable h1 {
      font-size: 2em;
      font-weight: bold;
    }

    .note-editable h2 {
      font-size: 1.6em;
      font-weight: bold;
    }

    .note-editable h3 {
      font-size: 1.3em;
      font-weight: bold;
    }

    .note-editable h4 {
      font-size: 1.1em;
      font-weight: bold;
    }

    .note-editable h5 {
      font-size: 1em;
      font-weight: bold;
    }

    .note-editable h6 {
      font-size: 0.9em;
      font-weight: bold;
    }

    .note-editable blockquote {
      border-left: 4px solid #ccc;
      padding-left: 10px;
      color: #555;
    }

    .note-editable pre,
    .note-editable code {
      background: #f8f8f8;
      padding: 8px;
      border-radius: 4px;
    }



    /* --- Content Container --- */
    .prose {
      overflow: hidden;
      /* contain floats from editor */
    }

    /* --- Inline Images from Summernote --- */
    .prose img {
      display: inline-block;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin: 1rem auto;
      border-radius: .5rem;
    }

    /* Respect Summernote's float and width if set */
    .prose img[style*="float:left"],
    .prose img.note-float-left {
      float: left;
      margin: .5rem 1rem .5rem 0 !important;
    }

    .prose img[style*="float:right"],
    .prose img.note-float-right {
      float: right;
      margin: .5rem 0 .5rem 1rem !important;
    }

    .prose figure,
    .prose .note-image {
      margin: 1.25rem 0 !important;
      clear: both;
    }


    /* --- Cars Section --- */
    .cars-section {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #e5e7eb;
      clear: both;
      /* ensures cars start below floated content */
    }

    /* --- Carousel --- */
    .car-carousel {
      position: relative;
      overflow: hidden;
    }

    .car-carousel-track {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 0.5rem;
    }



    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
      cursor: pointer;
    }

    .carousel-prev {
      left: 8px;
    }

    .carousel-next {
      right: 8px;
    }



    /* --- Sidebar --- */
    aside#right-sidebar {
      position: sticky;
      top: 80px;
      align-self: start;
      max-height: calc(100vh - 100px);
      overflow: auto;
    }





    /* Paragraph spacing */
    .summernote-output p {
      margin: 0 0 1em 0 !important;
      line-height: 1.5 !important;
    }

    /* Ordered lists (numbering) */
    .summernote-output ol {
      list-style-type: decimal !important;
      /* restore numbering */
      list-style-position: inside !important;
      padding-left: 2em !important;
      /* indentation */
      margin: 0 0 1em 0 !important;
    }

    /* Unordered lists (bullets) */
    .summernote-output ul {
      list-style-type: disc !important;
      /* restore bullets */
      list-style-position: inside !important;
      padding-left: 2em !important;
      margin: 0 0 1em 0 !important;
    }

    /* List items spacing */
    .summernote-output li {
      margin-bottom: 0.5em !important;
    }

    /* Nested lists (ordered and unordered) */
    .summernote-output ol ol,
    .summernote-output ul ul,
    .summernote-output ol ul,
    .summernote-output ul ol {
      padding-left: 2em !important;
      /* extra indent for nested lists */
    }

    /* Inline indents applied by Summernote */
    .summernote-output [style*="margin-left"] {
      margin-left: revert !important;
    }
