/**
 * Hide specific client type buttons on mobile screens
 */

/* Define the buttons to hide on mobile */
@media (max-width: 768px) {
    /* We'll add specific classes to these buttons in the PHP template */
    .client-type.hide-on-mobile {
        display: none !important;
    }
}
