.stylish-tabs-wrapper {
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.tab-buttons button {
  padding: 8px 16px;
  background:linear-gradient(45deg, #343236, #77797c);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.tab-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.tab-buttons button.active {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

.tab-content {
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  animation: fadeIn 0.5s;
}

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

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

@media (max-width: 768px) {
  .tab-buttons button {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .tab-buttons button {
    font-size: 12px;
    padding: 5px 10px;
  }
}
