:root {
  --themeprimaryclr: #0e21ce;
  --themesecondaryclr: #696969;
  --darkclr: #000000;
  --plainclr: #fff;
  --lightbg: #fafafa;
  --themehoverclr: #09249e;
}

.tabs-container {
  width: 100%;
  margin-top: 30px;
  background: var(--plainclr);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs-header {
  text-align: center;
  margin-bottom: 40px;
  color: var(--darkclr);
}

.tabs-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs-header p {
  font-size: 1.2rem;
  color: var(--themesecondaryclr);
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.tab-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 25px;
  background: var(--plainclr);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  min-width: 120px;
}

.tab-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--themeprimaryclr) 0%, #2575fc 100%);
  color: var(--plainclr);
  border: none;
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.25);
}

.tab-button.active .tab-icon {
  color: var(--plainclr);
}

.tab-button.active .tab-name {
  color: var(--plainclr);
}

.tab-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--themeprimaryclr);
  transition: all 0.3s ease;
}

.tab-button:focus-visible {
  outline: unset !important;
}

.tab-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--darkclr);
  transition: all 0.3s ease;
}

.content-area {
  background: var(--lightbg);
  border-radius: 15px;
  padding: 30px;
  min-height: 250px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
  display: block;
}

.content-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--darkclr);
}

.content-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: var(--themeprimaryclr);
}

.content-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.content-text {
  color: #34495e;
  line-height: 1.7;
  font-size: 1.1rem;
}

.content-text p {
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .tabs-navigation {
    flex-direction: column;
    align-items: center;
  }
  .tab-button {
    width: 100%;
    max-width: 250px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .tab-icon {
    margin-bottom: 0;
    margin-right: 15px;
  }
}/*# sourceMappingURL=tabsDesign5.css.map */