.tabContainer {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tabButton {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: gray;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.activeTab {
  background: #ffffff;
  color: #122b46;
  font-weight: 600;
  border: 1px solid #e7e9ec;
  border-radius: 6px;
}

.infoIcon {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
  color: "#ffff";
  background: #00447c !important;
  padding: 1.5em 8px;
}
