/**
 * Remove scrollbar from .tk-admin element
 * Keep height: 100% but hide the scrollbar
 */

.tk-admin {
    overflow: hidden !important;
}

/* Alternative: hide scrollbar but keep scroll functionality */
.tk-admin {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.tk-admin::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}