/* GST India - Black UI */
.gst-india-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.gst-india-card {
  width: 100%;
  max-width: 600px;
  background: #0b0b0b;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.gst-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}

.gst-label {
  font-size: 0.95rem;
  margin-top: 10px;
  margin-bottom: 6px;
  display:block;
  color: #ccc;
}

.gst-amount,
.gst-rate-input {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  margin-bottom: 14px;
}

.gst-actions {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.gst-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
}

.gst-actions button:hover {
  transform: translateY(-2px);
}

.gst-results {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}

.gst-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 1rem;
}
