/*
    All default HTML elements
*/


/* Text */
* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16pt;
}

h1 {
    font-size: 40pt;
}

h2 {
    font-size: 26pt;
}

label {
    margin: 10px;
}

/* Images & icons */
button img {
    height: 16pt;
    width: auto;
    vertical-align: middle;
}

li img {
    height: 16pt;
}


/* Display */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

/* Interractive componants */
button, select, input[type="text"] {
    border: 0.5px solid rgb(194, 194, 194);
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    font: 16pt;
    background-color: #EBEBEB;
}

button {
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    display: inline-block;
    text-align: center;
} button:has(img) {
    /* Fixes images not being horizontally aligned */
    line-height: 1;
}

select {
    padding-right: 24px;

    /* removes glossy effects in Safari*/
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"/></svg>') no-repeat;
    background-size: 18px;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-color: #EBEBEB;
}

input[type="text"] {
    background-color: white;
}

input[type="checkbox"] {
    transform: scale(2);
    margin-right: 20px;
    vertical-align: middle;
    accent-color: #8D8B55;
}