@import url(./reset.css);
@import url(./gdls-elements.css);

/* Disable text selection across the application */
* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Hide cursor by default for touch screen, toggle with 'm' key */
body {
    cursor: none;
}

/* Allow selection on specific content areas if needed in future */
#contentViewport {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}