/**
 * Frontend styles for responsive block controls.
 * Breakpoints: Mobile < 768px | Tablet 768px - 1024px | Desktop > 1024px
 */

@media (max-width: 767px) {
    .rbc-hide-on-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .rbc-hide-on-tablet {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .rbc-hide-on-desktop {
        display: none !important;
    }
}
