.tabs-container {
  margin: 1.5rem 0rem;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  padding: 0;
}

.tab-button {
  flex: 1;
  padding: 0.7rem;
  background-color: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #aaa;
  font-weight: 400;
  transition: color 0.3s ease, font-weight 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
  margin: 0;
  text-align: center;
  user-select: none;
}
.tab-button:hover {
  background-color: #f5f5f5;
  color: #333;
}
.tab-button.active {
  color: #0077b6;
  font-weight: 600;
  border-bottom-color: #0077b6;
  background-color: transparent;
}

.tabs-content {
  position: relative;
}

.tab-content {
  display: none;
  animation: tabs_fadeIn 0.3s ease;
  margin: 0;
  padding: 1rem;
}
.tab-content.active {
  display: block;
}
.tab-content-padding-0 {
  padding: 0;
}

@keyframes tabs_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}