.narrow-block {
    max-width: 600px;
}

.card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 10%);
    padding: 1em;
    background-color: var(--secondary-color-100);
}

.history-table-wrapper {
    max-height: 66vh;
    overflow: auto;
    max-width: 85vw;
    border: 3px solid gainsboro;
}

table.history-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

table.history-table thead {
    text-align: left;
}

table.history-table th, table.history-table tbody td {
    padding: 0.5em 1em;
    vertical-align: top;
}

table.history-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

table.history-table th, table.history-table tbody td {
    border: 1px solid #80808069;
}

table.history-table th {
    /* TODO: extract color */
    background-color: #ccc;
    position: sticky;
    top: 0;
    z-index: 1;
}