   /* live search showing */
   .result-container {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
       }

       .result-title {
        font-size: 16px;
        font-weight: bold;
        margin-right: auto;
       }

       .result-menu {
        font-size: 14px;
        color: #666;
        background-color: #f0f0f0;
        padding: 5px 10px;
        border-radius: 4px;
        display: inline-block;
       }

       .result-container:hover {
        background-color: #f4f4f4;
       }

       #search-results-container::-webkit-scrollbar {
        width: 10px;
       }

       #search-results-container::-webkit-scrollbar-track {
        background: #f1f1f1;
       }

       #search-results-container::-webkit-scrollbar-thumb {
        background: #888;
       }

       #search-results-container::-webkit-scrollbar-thumb:hover {
        background: #555;
       }

       .result-image {
        width: 30px;
        height: auto;
        margin-right: 10px;
       }

       .productmenu {
        float: right;
        padding: 20px;
        top: 20px;
        right: 20px;
       }

       .productmenu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
       }

       .productmenu li {
        margin-right: 15px;
       }

       .productmenu li:last-child {
        margin-right: 0;
       }

       .productmenu a {
        text-decoration: none;
        color: #333;
        padding: 10px 20px;
        border: 1px solid #333;
        border-radius: 6px;
        transition: all 0.3s ease;
       }

       .productmenu a:hover {
        background-color: #333;
        color: #fff;
       }

       .productmenu li a.active {
        background-color: powderblue;
        !important;
        color: black !important;
        font-weight: 400 !important;
       }

    #search-results-container {
        right: 0;
        margin-left : 350px;
        position: absolute;
        top: 100%; 
        left: 0;
        max-height: 300px;
        overflow-y: auto;
        border: 2px solid #ddd;
        border-top: none;
        border-radius: 0 0 4px 4px;
        background-color: white; 
        z-index: 1000; 
    }


    /* Avatar Menu Css */
    .avatar-menu-list {
          display: none;
          position: absolute;
          top: 100%;
          right: 0;
          background-color: #fff;
          border: 1px solid #ddd;
          border-radius: 8px;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          z-index: 1;
          list-style: none;
          padding: 8px 0;
          margin: 0;
          transition: opacity 0.3s ease, transform 0.3s ease;
          opacity: 0;
          transform: translateY(-10px);
      }

      .avatar-menu:hover .avatar-menu-list {
          display: block;
          opacity: 1;
          transform: translateY(0);
      }

      .avatar-menu-item {
          width: 200px; /* Set the desired width */
          padding: 12px 20px;
          text-decoration: none;
          display: block;
          color: #333;
          font-size: 14px;
          transition: background-color 0.3s ease, color 0.3s ease;
      }

      .avatar-menu-item:hover {
          background-color: #007bff;
          color: #fff;
          border-radius: 8px;
      }

      .avatar-menu-item:not(:last-child) {
          border-bottom: 1px solid #eee;
      }
     /* For showing video submenu */
      .int-submenu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          background-color: #333;
          min-width: 160px;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          border-radius: 8px; /* Added rounded corners */
      }

      .nav-item:hover .int-submenu {
          display: block;
      }

      .int-submenu-item {
          color: black;
          background: white;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          text-align: left;
          border-radius: 4px; /* Added rounded corners */
      }

      .int-submenu-item:hover {
          background: #007bff;
          color: white;
      }

