/* Global zoom adjustment - makes everything 85% size */
/* Only applies to desktop - mobile browsers handle zoom differently */
html {
    zoom: 0.85;
}

/* Disable zoom on mobile devices to prevent scaling conflicts */
@media (max-width: 768px) {
    html {
        zoom: 1 !important;
    }
}
