/*
.WaGadgetMenuHorizontal .menuInner ul.firstLevel{
background: blue !important;
}
.WaGadgetMenuHorizontal .menuInner {
    background: #ffffff;
}
.WaGadgetMenuHorizontal .menuInner ul.firstLevel>li.sel>.item>a {
    color: #000000;
}
*/

/* Container for the list */
    .company-list {
      list-style: disc;           /* show bullets */
      padding-left: 1.25rem;     /* reserve space for bullets */
      margin: 0;
      display: flex;             /* use flex for easy horizontal layout */
      gap: 1rem;                 /* spacing between items */
      flex-wrap: wrap;           /* allow wrapping on small screens */
      align-items: center;
    }

    /* Keep bullets and allow items inline-like behavior */
    .company-list li {
      display: inline-block;     /* preserves bullet marker while laying out horizontally */
      margin: 0;                 /* spacing handled by gap on ul */
    }

    /* Optional: make company names links look nicer */
    .company-list a {
      text-decoration: none;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: #0b63d6;
    }

    .company-list a:hover,
    .company-list a:focus {
      text-decoration: underline;
    }