#encash-portal {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

input[type="text"] {
  width: 100%;
  padding: 0.5em;
  margin: 0.5em 0;
}

input[type="radio"] {
  display: inline;
  margin-right: 10px;
}

button.search {
  background-color:rgb(255, 255, 255);
  color: white;
  padding: 0.5em 1em;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  margin-top: 0.5em;
}

button.search:hover {
  background-color:#ebebeb;
}

button {
    background-color: #ebebeb;
    font-size: 22px;
    border: none;
    color: black;
    padding: 20px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 6px 4px;
    cursor: pointer;
    border-radius: 28px;
}

button:hover {
    background-color:rgb(190, 190, 190);
}

table.tb { 
  width:100%; 
  border-collapse: collapse; 
}
.tb th, .tb td {
  height: 22px;
  border: solid 0px #ebebeb; 
  padding: 2px; 
  vertical-align: middle;
}
.tb thead { 
  background-color:white; 
  vertical-align: middle;
}

/* MAIN TABS */
.encash-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.encash-tab {
  font-size: 22px;
  background: #ebebeb;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.encash-tab.active {
  background: #89cff0;
  color: #fff;
}

.encash-tab-content {
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
}

.encash-tab-content ul {
  list-style: none;
  padding-left: 0;
}

.encash-tab-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid #ebebeb;
}

/* SUB TABS */
.encash-subtabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.encash-subtab {
  background: #ebebeb;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.encash-subtab.active {
  background: #89cff0;
  color: #fff;
}

.encash-subtab-content {
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
}

.encash-subtab-content ul {
  list-style: none;
  padding-left: 0;
}

.encash-subtab-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid #ebebeb;
}

/* Customize the label (the container) */
.checkcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline;
  margin-right: 10px;
}

/* Hide the browser's default radio button */
.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ebebeb;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
  background-color: #ebebeb;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}