.gstin-field-wrapper {
  position: relative;
}

.gstin-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

#gstin {
  padding-right: 120px;
  width: 100%;
  box-sizing: border-box;
}

.gstin-status {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: bold;
  text-decoration: none;
}

.woocommerce-invalid + .gstin-status {
  top: 33%;
}

.gstin-verified {
  color: #4CAF50;
  background: #E8F5E9;
  pointer-events: none;
}

.gstin-rejected {
  color: #F44336;
  background: #FFEBEE;
  pointer-events: none;
}

.gstin-pending {
  color: #2196F3;
  background: #E3F2FD;
}

.gstin-submitted {
  color: #FF9800;
  background: #FFF3E0;
  pointer-events: none;
}

.gstin-rejection-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.gstin-rejection-reason {
  color: #F44336;
  font-size: 0.9em;
}

.gstin-reupload {
  color: #2196F3;
  font-size: 0.9em;
  text-decoration: none;
}

.gstin-reupload:hover {
  text-decoration: underline;
}