.ggm-root {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.ggm-card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(180deg, #f1fff4, #ffffff);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ggm-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #0d3b24;
}

.ggm-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.ggm-field {
  flex: 1 1 220px;
}

.ggm-field label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #22573b;
}

.ggm-field input,
.ggm-field select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e0f3e8;
  font-size: 14px;
}

.ggm-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0ca96b, #25d48a);
  border: none;
  padding: 12px 18px;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.ggm-results {
  display: none;
  background: white;
  padding: 18px;
  margin-top: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.ggm-line {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 6px 0;
}

.ggm-tier {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  color: white;
}

.ggm-tier.S { background: #064e3b; }
.ggm-tier.A { background: #0f5132; }
.ggm-tier.B { background: #c27d0e; }
.ggm-tier.C { background: #d9543f; }
.ggm-tier.D { background: #6b7280; }

.ggm-disclaimer {
  font-size: 12px;
  color: #4b5563;
  margin-top: 12px;
  text-align: center;
}