/* Global resets and base styles */
html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #dedede;
    position: relative;
}

* {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    box-sizing: border-box;
}

h1 {
    position: fixed;
    top: 16px;
    left: 20px;
    font-size: 22px;
    font-weight: 300;
    color: var(--paper-text);
    margin: 0;
    z-index: 10;
    opacity: 0.7;
}

h1 .bold-part {
    font-weight: 700;
    color: var(--paper-primary);
}

p {
    margin-bottom: 10px;
}

/* Only allow text selection for form inputs and editable content */
input, 
textarea, 
[contenteditable="true"] {
    user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    -moz-user-select: text;
}