/* Button text centering fix for iPhone SE */
@media (max-width: 375px) {
    /* Override any other button styles to ensure proper centering */
    .btn.btn-primary {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: visible !important;
        padding: 10px 8px !important;
        font-size: 0.75rem !important;
        width: 100% !important;
        max-width: 200px !important;
    }
}