/* OffshoreDedi WHMCS Theme V3.5
   Targeted final QA fixes: homepage sidebar removal + native invoice gateway selector. */

/* The public/client portal homepage should remain a clean full-width storefront.
   header.tpl now suppresses the WHMCS sidebar on homepage; these are defensive fallbacks. */
body #main-body .primary-content { min-width: 0; }

/* Restore the platform-native select indicator on printable invoice payment method.
   Firefox/macOS renders the familiar up/down chevrons, making it obvious that
   the gateway can be changed. */
.invoice-container select.od-v34-gateway-select,
.invoice-container .od-v34-gateway-select {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  appearance: auto !important;
  background-image: none !important;
  background-color: #fff !important;
  color: #1e2733 !important;
  padding-right: 12px !important;
  cursor: pointer !important;
}

.invoice-container select.od-v34-gateway-select::-ms-expand {
  display: block !important;
}

@media (max-width: 767px) {
  .invoice-container select.od-v34-gateway-select {
    width: 100% !important;
    min-width: 0 !important;
  }
}
