.stylish-table .nav-tabs li a {
    background: #dcecfb;
    
}

/* =========================
   PIN ICON (like screenshot)
   =========================
   Use in markup: <span class="os-pin"></span>
*/
.os-pin{
  position: relative;
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-right: 10px;
  vertical-align: text-top;
}

/* red head */
.os-pin:before{
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d63b2f;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.35),
    0 1px 2px rgba(0,0,0,.25);
}

/* gray stem */
.os-pin:after{
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 2px;
  height: 7px;
  border-radius: 1px;
  background: #9aa1a8;
  box-shadow: 0 1px 1px rgba(0,0,0,.18);
}