  .main-container {
      width: 100%;
      max-width: 100%;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .search-card {
      background-color: #ffffff;
      border-radius: 28px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      height: 160px;
      justify-content: space-between;
      position: relative;
      transition: box-shadow 0.3s ease;
      z-index: 10;
  }

  .search-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .input-area {
      width: 100%;
  }

  .input-area input {
      width: 100%;
      border: none;
      font-size: 18px;
      font-family: 'yekanbakh';
      color: #251848;
      background: transparent;
      padding: 10px 0;
  }

  .input-area input::placeholder {
      color: #8e9196;
      opacity: 1;
  }

  .input-area input:focus {
      border: none;
      outline: none;
  }

  .controls-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .controls-right,
  .controls-left {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444746;
      transition: background 0.2s;
  }

  .icon-btn:hover {
      background-color: #f0f4f8;
  }

  .tools-btn,
  .thinking-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'yekanbakh';
      font-size: 0.95rem;
      color: #251848;
      padding: 8px 12px;
      border-radius: 8px;
  }

  .svg-icon {
      width: 24px;
      height: 24px;
      fill: currentColor;
  }

  .dropdown-wrapper {
      position: relative;
  }

  .dropdown-menu {
      display: none;
      position: absolute;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      padding: 8px 0;
      min-width: 180px;
      top: 110%;
      z-index: 100;
  }

  .dropdown-menu.show {
      display: block;
  }

  .dropdown-item {
      padding: 10px 20px;
      font-size: 0.9rem;
      cursor: pointer;
      color: #251848;
      transition: 0.3s ease-in-out;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .dropdown-item:hover {
      background-color: #f0f4f8;
  }

  #thinkingMenu {
      left: 0;
  }

  #toolsMenu {
      right: 0;
  }

  .suggestions-row {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 5px;
      scrollbar-width: none;
      z-index: 1;
  }

  .suggestions-row::-webkit-scrollbar {
      display: none;
  }

  .chip {
      background-color: #533c90;
      border: none;
      border-radius: 16px;
      padding: 12px 16px;
      font-family: 'yekanbakh';
      font-size: 0.95rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      white-space: nowrap;
      transition: 0.3s ease-in-out;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .chip:hover {
      background-color: #FBD110;
      color: #533c90;
  }

  .chip img,
  .chip svg {
      width: 20px;
      height: 20px;
  }

  .orange-icon {
      color: #f29900;
  }

  .purple-icon {
      color: #a855f7;
  }

  .blue-icon {
      color: #3b82f6;
  }

  .chat-resault {
      background: #1b1135;
      padding: 20px;
      border-radius: 28px;
  }

  @media only screen and (max-width: 480px) {
      .main-container {
          padding: 0 !important;
      }

      .input-area input {
          font-size: 16px !important;
      }

      .icon-btn {
          padding: 0 !important;
      }

      .tools-btn,
      .thinking-btn {
          gap: 4px !important;
          font-size: 14px !important;
          padding: 0 !important;
      }

      .dropdown-item {
          font-size: 14px !important;
      }

      .chip {
          font-size: 12px !important;
      }
  }