* {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    color: rgb(75,75,75);
}

/* Icons (e.g. Material) can be used as <i>icon</i>, no class needed. */
i {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}


p {
    line-height: 26px;
}

h1 { font-weight: 900; font-size: 28px; }
h2 { font-weight: 800; font-size: 22px; }
h3 { font-weight: 700; font-size: 16px; }

ul {}

ul > li, ol > li { line-height: 26px; }

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid rgb(75,75,75);
}

a {
    color: rgb(75,75,255);
}

table {
    width: 100%;
    border: 1px solid rgb(75,75,75);
    border-collapse: collapse;
}

thead {
    background-color: rgba(0,0,0,0.1);
}
thead > tr {}
thead > tr > td { font-weight: 600; }

tbody > tr, tr {}
tbody > tr:hover, tr:hover { background-color: rgba(0,0,0,0.05); }
tbody > tr > td, tr > td {
    border: 1px solid rgb(75,75,75);
    padding: 10px;
}

td.Control {
    padding: 0;
    position: relative;
}
td.Control > input,
td.Control > select,
td.Control > button {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 10px;
}
td.Control > textarea { display: block; width: 100%; border: none; outline: none; }
td.Control > input[type=checkbox],
td.Control > input[type=radio] { appearance: none; outline: none; }