/*tab css*/

.content-info{
	width: 100%;
}
.tabcontainer {
  background-color: #f0f8ff;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.tab-buttons {
  display: flex;
  gap: 8px;
}

.tab-btn {
  width: 100%;
  border: none;
  color: #020617;
  background-color: #f0f8ff;
  border-radius: 8px 18px 0px 0px;
  font-weight: 500;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.tab-btn:hover {
  background: linear-gradient(90deg, #da1d7270, #b62ab39c);
}
.tab-btn.active {
	background: linear-gradient(90deg, #da1d72, #b62ab3);
  	color: #fff;
}

.content {
  display: none;
}
.content.show {
  display: flex;
  gap: 14px;
	background: linear-gradient(90deg, #da1d7238, #b62ab340);
  border-radius: 0px 0px 8px 8px;
  padding: 16px;
}

/*table*/