
.active-icon {
    position: relative;
  }
  #productstable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
  }

  #productstable th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
  }

  #productstable th {
    background-color: #f5f5f5;
    color: #333;
  }

  .category-row {
    background-color: #f9f9f9;
  }

  .category-row td {
    border-top: 2px solid #ddd;
    text-align: left;
  }

  #productstable tbody tr:hover {
    background-color: #f1f1f1;
  }

  #productstable tr td:last-child {
    /* text-align: center; */
  }
  .active-icon::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff0000; /* blue color */
  }
  #character-count {
      font-size: 12px;
      color: #666;
  }
  #country-suggestions {
      position: absolute;
      z-index: 1;
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 10px;
      overflow-y: auto;
      max-height: 200px;
      }

      #country-suggestions a {
      display: block;
      padding: 10px;
      border-bottom: 1px solid #ddd;
      }

      #country-suggestions a:hover {
      background-color: #f0f0f0;
      }

  #suggestions ,#suggestionsE {
          position: absolute;
          z-index: 1;
          background-color: #fff;
          border: 1px solid #ddd;
          padding: 10px;
          overflow-y: auto;
          max-height: 200px;
          }
          .suggestion-item {
              padding: 10px;
              display: block;
              border-bottom: 1px solid #ddd;
              cursor: pointer;
          }
          .suggestion-item:hover {
              background-color: #f0f0f0;
          }

.option.active {
  background-color: #1f0ccb;
  color: #ffffff;
}

table tbody tr.selected{
    color: #ffffff;
    background-color: #1f0ccb;
}

:root {
    --border-color: #e3e5ef;
    --primary-color: #bada55;
    --treeview-level-size: 55px;
}

.treeview {

    .btn-default {
        border-color: var(--border-color);
    }

    .btn-default:hover {
        background-color: #f7faea;
        color: var(--primary-color);
    }

    ul {
        list-style: none;
        padding-left: 32px;
    }

    ul li {
        padding: 50px 0 0 35px;
        position: relative;
    }

    ul li:before {
        content: "";
        position: absolute;
        top: -26px;
        left: -31px;
        border-left: 2px dashed #a2a5b5;
        width: 1px;
        height: 100%;
    }

    ul li:after {
        content: "";
        position: absolute;
        border-top: 2px dashed #a2a5b5;
        top: 70px;
        left: -30px;
        width: 65px;
    }

    ul li:last-child:before {
        top: -22px;
        height: 90px;
    }

    > ul > li:after,
    > ul > li:last-child:before {
        content: unset;
    }

    > ul > li:before {
        top: 90px;
        left: 36px;
    }

    > ul > li:not(:last-child) > ul > li:before {
        content: unset;
    }

    .treeview__level:before {
        height: calc(var(--treeview-level-size) + 5px);
        width: calc(var(--treeview-level-size) + 5px);
        top: -9.5px;
        background-color: #54a6d9;
        border: 7.5px solid #d5e9f6;
        font-size: 22px;
    }

    .treeview__level {
        padding: 7px;
        padding-left: calc((var(--treeview-level-size) / 2) + 15px);
        display: inline-block;
        border-radius: 5px;
        font-weight: 700;
        border: 1px solid var(--border-color);
        position: relative;
        z-index: 1;
    }

    .treeview__level:before {
        content: attr(data-level);
        position: absolute;
        left: calc((var(--treeview-level-size) / -2));
        top: -6.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: var(--treeview-level-size);
        width: var(--treeview-level-size);
        border-radius: 50%;
        border: 7.5px solid #eef6d5;
        background-color: var(--primary-color);
        color: #fff;
        font-size: 20px;
    }

    .level-title {
        cursor: pointer;
        user-select: none;
    }

    .level-title:hover {
        text-decoration: underline;
    }

    .treeview--mapview ul {
        justify-content: center;
        display: flex;
    }

    .treeview--mapview ul li:before,
    .treeview--mapview ul li:after {
        content: unset;
    }
}

