/* Стили для кнопок вкладок */
.tab-btn {
  background-color: #ffffff;
  color: #3A6FB2;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Активная вкладка */
.tab-btn.active {
  background-color: #3A6FB2;
  color: #ffffff;
  font-weight: bold;
}

/* Стили для иконок внутри вкладок */
.tab-btn svg {
  fill: currentColor;
}

/* Стили для контента вкладок */
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}
