/* Zoom out admin page to 90% */
body {
    zoom: 0.9 !important;
    -moz-transform: scale(0.9) !important;
    -moz-transform-origin: 0 0 !important;
}

/* Alternative method using transform for better browser compatibility */
@supports not (zoom: 1) {
    body {
        transform: scale(0.9) !important;
        transform-origin: top left !important;
        width: 111.11% !important; /* 100 / 0.9 = 111.11 to maintain proper width */
        height: 111.11% !important;
    }
}

/* Fix for Firefox which doesn't support zoom */
@-moz-document url-prefix() {
    body {
        transform: scale(0.9) !important;
        transform-origin: top left !important;
        width: 111.11% !important;
        height: 111.11% !important;
    }
}

/* Ensure modals and popups remain properly centered */
.tk-lightbox,
.sb-lightbox,
.tk-popup,
.sb-popup,
.tk-dialog,
.sb-dialog {
    zoom: 1.11 !important; /* Counter-zoom to keep modals at normal size */
}

/* Keep tooltips at normal size */
.tk-tooltip,
.sb-tooltip {
    zoom: 1.11 !important;
}