.tab-container {
  width: 100%;
  padding-top: 20px;
}

.tab-container ul {
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tab-container ul li {
  list-style: none;
  display: flex;
  width: 155px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.tab-container ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.tab-container ul li a:hover {
  background-color: #e5edff;
  color: #1d2d6e;
}

.tab-container ul li a.active {
  background-color: #e5edff;
  color: #1d2d6e;
  font-weight: bold;
}

@media (max-width: 992px) {
  .tab-container ul li a {
    font-size: 13px;
  }

  .tab-container ul li a.lt {
    font-size: 12px;
    letter-spacing: -1.5px;
  }
}
