/* =========================================================
   Weblic GST Invoice Pro — Frontend / Checkout Stylesheet
   ========================================================= */

/* ── GSTIN fields ── */
.wgip-gstin-feedback {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s;
}
.wgip-gstin-feedback.valid   { color: #27ae60; }
.wgip-gstin-feedback.invalid { color: #c0392b; }
.wgip-gstin-feedback.pending { color: #888; }

/* Highlight GSTIN input */
#billing_gstin,
#shipping_gstin,
.wgip-gstin-field input {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Courier New', Courier, monospace;
}

/* ── My Account — invoice download button ── */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.wgip-invoice-link {
  display: inline-block;
  padding: 6px 14px;
  background: #16213e;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  margin-top: 4px;
  transition: background .2s;
}
.woocommerce-orders-table .wgip-invoice-link:hover { background: #e94560; color: #fff; }
