:root {
    --edit-button-width-height: 18px;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    padding: 10px;
    margin: 0 auto;
}

details.log {
    margin-top: -25px;
}

table {
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    border: 1px solid #ddd;
    padding: 2px 10px;
    font-size: 0.9rem;
}

thead {
    position: sticky;
    top: 0;
    background-color: white;
}

.clickable {
    cursor: pointer;
    color: blue;
}

.error {
    background-color: #f14646;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
}

button.edit {
    padding: 1px;
    width: var(--edit-button-width-height);
    height: var(--edit-button-width-height);
    /* display: flex;
    justify-content: center;
    align-items: center; */

    span.material-symbols-outlined {
        font-size: 13px;
        line-height: 13px;
    }
}

@media (prefers-color-scheme: dark) {
    html.enable-dark-mode body {
        background-color: black;
        color: white;

        thead {
            background-color: black;
        }

        a,
        .clickable {
            color: #00aaff;
        }
    }
}
