.ggs-table-wrapper {
  max-width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease-in-out;
}

.ggs-table {
  width: 100%;
  max-width: 800px; /* Set max width to control the size */
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ggs-table thead {
  background-color: #f4f4f4;
}

.ggs-table th,
.ggs-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.ggs-table tbody tr:hover {
  background-color: #f9f9f9;
}

@media (max-width: 600px) {
  .ggs-table th,
  .ggs-table td {
    padding: 10px;
    font-size: 14px;
  }

  .ggs-table {
    width: 100%;
    max-width: 100%;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
