* {
    font-family: Arial, sans-serif;
    font-size: medium;
}

body {
    height: 100%;
    margin: 0;
}

table {
    margin: 1rem;
    width: calc(100% - 2rem);
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

th:not(:first-child), td:not(:first-child) {
    text-align: center;
}

h1 {
    font-size: xx-large;
    color: #1e4251;
    padding: 1rem;
    margin: 0;
}

img.icon {
    width: 20px;
    height: 20px;
}

tr.deprecated img.icon {
    filter: grayscale(100%) brightness(1.5) contrast(0.7);
}

img.iconw {
    float: right;
    width: 20px;
    height: 20px;
}

img.fullscreen {
    margin: 1rem;
    width: calc(100% - 2rem);
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

form {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-grow: 0.5;
    margin: 0 10px;
    gap: 1rem;
}

label {
    white-space: nowrap;
    padding-right: 0.5rem;
}

input[type="text"] {
    font-weight: bold;
    margin: 0.25rem;
    max-width: 10rem;
    outline: none;
    border: none;
}

input[type="radio"], input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    margin: 0.25rem 0.5rem 0.25rem 0;
    cursor: pointer;
}

button {
    margin: 1rem;
    padding: 1rem 2rem;
    background-color: #f2f2f2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.not-important, .loading {
    color: #ddd;
}