.custom-link {
  text-decoration: none;
  position: relative;
}

.custom-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: rgb(58, 158, 216);
  transition: width 0.3s ease;
}

.custom-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .tabdatacontainer table tr {
    display: block;
    margin-bottom: 1em;
  }

  .tabdatacontainer table td {
    display: block;
    width: 100% !important;
  }

  .tabdatacontainer table td:first-child {
    font-weight: bold;
  }
}
