/* =========================
   Phone field prefix styling
   - Absolute positioned inside the input
   - Grey background box
   - Does NOT affect input border/structure
   ========================= */

/* Prefix - absolute positioned inside input */
#billing_phone_field .phone-prefix {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: #f5f5f5;
    border-right: 1px solid #bfbfbf;
    border-radius: 2px 0 0 2px;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

#billing_phone_field .phone-flag {
    font-size: 20px;
    line-height: 1;
}

#billing_phone_field .phone-code {
    font-weight: 400;
    color: #555;
}
