/* ==== Checkout Form Fixes ==== */

/* Labels for Billing/Shipping/Email fields */
table.form-item td.label,
table.form-item td.label label,
table.form-item td.label span,
td.label,
label {
    color: #000000 !important;
    font-size: 11pt !important;   /* larger text */
    font-weight: bold !important; /* make labels stand out */
    font-family: Verdana, Arial, sans-serif !important;
}

/* Input boxes for customer details */
input.textbox,
input.textbox-center,
select,
textarea {
    font-size: 14px !important;   /* easier to read */
    font-family: Arial, Verdana, sans-serif !important;
    padding: 4px 6px !important;  /* better spacing inside boxes */
    border: 1px solid #000000 !important;
    box-sizing: border-box;       /* consistent sizing */
}

/* Adjust input box width where possible */
input.textbox,
select,
textarea {
    max-width: 300px;
}

/* Spacing between labels and inputs */
table.form-item td.label {
    padding-bottom: 3px;
}
table.form-item td.input {
    padding-bottom: 10px;
}

/* Headings like "Billing Address" and "Shipping Address" */
h2, h3 {
    font-size: 14pt !important;
    font-weight: bold;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 10px;
}/* ==== Left Menu Fix for 16% Left Column ==== */

td.page-column-left {
    vertical-align: top;       /* ensure menu starts at the top */
}

td.page-column-left .sidecolumnitemtext,
td.page-column-left .sidecolumnitemtextsub {
    display: block;            /* force block layout */
    width: 100%;               /* fill the 16% cell */
    margin: 0;
    padding: 2px 8px;          /* optional spacing inside menu items */
}

td.page-column-left a {
    display: block;            /* make links stack correctly */
    width: 100%;
    text-decoration: none;
    color: #666666;
    padding: 3px 8px;
    box-sizing: border-box;
}

td.page-column-left a:hover {
    text-decoration: underline;
    color: #FF0000;            /* match your hover style */
}
/* ==== Align center column with left column ==== */
td.page-column-center {
    vertical-align: top;       /* align to top of row */
    padding-top: 0 !important; /* remove extra spacing */
    margin-top: 0 !important;
}
td.page-column-center {
    margin-top: -10px !important; /* adjust as needed (try -5px to -15px) */
}

