/* 
 * SIMPLE FIX - Only align Submit button text to match Cancel button
 * No design changes - just text position fix
 */

/* Make Submit button text align like Cancel button */
#requestCallModal #submitBtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

#requestCallModal #submitBtn .btn-text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure both buttons have same text alignment */
#requestCallModal #cancelBtn,
#requestCallModal #submitBtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

#requestCallModal #cancelBtn .btn-text,
#requestCallModal #submitBtn .btn-text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix loading state to match */
#requestCallModal #submitBtn .btn-loading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
