/* CSS Reset & Base Styles */

* { 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    background-image: var(--bg-gradient-primary), var(--bg-gradient-secondary), var(--bg-gradient-tertiary), var(--bg-gradient-quaternary);
}

/* Allow text selection for inputs and textareas */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

