/**
 * Theme Name:     Pro Child
 * Author:         Igor Skripachev
 * Template:       pro
 * Text Domain:	   pro-child
 * Description:    The Most Advanced Website Creator for WordPress.
 */

/*Uber Eats Buttons Style*/

.custom-uber-eats-buttons {
            margin-top: 15px;
margin-bottom: 15px;
            display: flex;
            flex-direction: row; /* Stack buttons */
            gap: 10px; /* Space between buttons */
       	    align-items: center;
            width: 100%;
        }
        
.uber-eats-button {
            display: inline-flex; /* Aligns items in a row */
            align-items: center; /* Keeps text and image aligned */
            gap: 8px; /* Space between text and icon */
            padding: 10px 15px;
            text-align: center;
            white-space: nowrap;
justify-content:center;
        }

        /* Responsive: Make buttons full width on smaller screens */
        @media (max-width: 480px) {
            .uber-eats-button {
                max-width: 100%;
            }
.custom-uber-eats-buttons {
           
            flex-direction: column; 
           
        }
        }