/************************************************
*   RESET
*************************************************/

/* 1. Alap reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Szöveg és elemek öröklődése */
html,
body {
    height: 100%;
    font-family: system-ui, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 3. Lista stílusok törlése */
ul,
ol {
    list-style: none;
}

/* 4. Linkek alapstílus törlése */
a {
    text-decoration: none;
    color: inherit;
}

/* 5. Form elemek normalizálása */
button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    appearance: none;
}

/* 6. Kép méretezés */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0px;
    border-collapse: collapse;
}

/* 7. Táblázatok */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 8. Gomb pointer cursor */
button {
    cursor: pointer;
}

/*Kötelező elemek, hogy legyen igazítható minden div pixel pontosan*/
body,
table,
tr,
td,
div,
span,
p,
input,
a {
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

