/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    min-height: 100vh;
    cursor: default;
}

/* Previne cursor de texto em elementos nao editaveis */
p, span, div, h1, h2, h3, h4, h5, h6, label, li, td, th, pre {
    cursor: default;
    user-select: none;
}

/* Permite selecao de texto apenas em areas de conteudo legivel */
.focus-relatorio-text, .template-item-preview {
    user-select: text;
    cursor: text;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
    cursor: text;
}

select {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

img, svg {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}
