/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/tab.scss ***!
  \*******************************************************************************************************************/
.tabs-container {
  width: 100%;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.tabs-container .tabs {
  display: flex;
  justify-content: space-around;
}
.tabs-container .tabs .tab {
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  background-color: #2c3e50;
  flex: 1;
}
.tabs-container .tabs .tab:hover {
  background-color: #34495e;
}
.tabs-container .tabs .tab.active {
  background-color: #e74c3c;
  font-weight: bold;
}
.tabs-container .tab-content {
  padding: 20px;
}
.tabs-container .tab-content .content {
  display: none;
}
.tabs-container .tab-content .content.active {
  display: block;
}
.tabs-container .tab-content .content h2 {
  color: #2c3e50;
}

@media (max-width: 500px) {
  .tabs {
    flex-direction: column;
  }
}

/*# sourceMappingURL=tab.min.css.map*/