
  /* Style the buttons */
  .btn {
  
    display: inline-block;
                      outline: none;
                      cursor: pointer;
                      padding: 0 16px;
                      background-color: #fff;
                      border-radius: 0.25rem;
                      border: 1px solid #4e4e4e;
                      color: #4e4e4e;
                      font-size: 13px;
                      line-height: 30px;
                      font-weight: 400;
                      text-align: center;
                  
    }
    
    /* Add a grey background color on mouse-over */
      /* Add a grey background color on mouse-over */
      .btn:hover {
        background-color: #0070d2;
        color:#f4f6f9;
      }
    .btn:focus {
    outline: 0 !important;
    
    }
    
    /* Add a dark background color to the active button */
    .btn.active {
    
    display: inline-block;
                      outline: none;
                      cursor: pointer;
                      padding: 0 16px;
                      background-color: #0070d2;
                      border-radius: 0.25rem;
                      border: 1px solid #0070d2;
                      color: #fff;
                      font-size: 13px;
                      line-height: 30px;
                      font-weight: 400;
                      text-align: center;
                      :hover {
                          background-color: #005fb2;  
                          border-color: #005fb2;
                      } 
                  
    }
    .myBtnContainer button {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    width: 1px;
    }