/* =========================================================
   WHMCS Order Form Custom CSS
   File: templates/orderforms/standard_cart/css/custom.css
   Purpose:
   - Fix "Have questions? Contact our sales team..." banner
   - Visual fix only
   - NO logic, NO content, NO link changes
   ========================================================= */


/* =========================================================
   FIX: "Have questions? Contact our sales team..." banner
   ========================================================= */

/* Target only order form alert banner */
.orderform .alert,
.orderform .alert-info,
.orderform .alert-warning {
    background-color: #fff3cd !important;   /* readable light yellow */
    color: #1f2937 !important;              /* dark text */
    border: 1px solid #f1d58a !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Make link readable and clearly clickable */
.orderform .alert a,
.orderform .alert-info a,
.orderform .alert-warning a {
    color: #0d6efd !important;              /* blue link */
    font-weight: 600;
    text-decoration: underline;
    opacity: 1 !important;
}

/* Hover effect */
.orderform .alert a:hover,
.orderform .alert-info a:hover,
.orderform .alert-warning a:hover {
    color: #084298 !important;
}


/* =========================================================
   Defensive fix: prevent dark-theme fade issues
   ========================================================= */
.orderform .alert,
.orderform .alert * {
    opacity: 1 !important;
    filter: none !important;
}
