.ggs-tabs {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: 2rem auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ggs-tab-buttons {
  display: flex;
  background-color: #f5f5f5;
}

.ggs-tab-button {
  flex: 1;
  padding: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.ggs-tab-button:hover {
  background-color: #eaeaea;
}

.ggs-tab-button.active {
  background-color: #ffffff;
  border-bottom: 2px solid #007BFF;
  color: #007BFF;
}

.ggs-tab-content-wrapper {
  padding: 1rem;
  background-color: #ffffff;
}

.ggs-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.ggs-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .ggs-tab-button {
    font-size: 14px;
    padding: 0.8rem;
  }

  .ggs-tab-content-wrapper {
    padding: 0.8rem;
  }
}
