:root {
  color-scheme: light dark;
}
html {
    padding: 0;
    margin: 0;
    background-color: light-dark(#ffffff, #282c2e);
}
body {
    font-family: "Verdana", sans-serif;
    margin: 0;
    padding: 0;
    color: light-dark(#272727, #dedfdf);
    display: flex;
    flex-direction: column;
}
header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    padding: 18px 32px 5px 32px;
    width: 100%;
    background-color: light-dark(#ffffff, #282c2e);
}
main {
  margin-top: 135px;
}
div.content {
    padding: 18px 32px 10px 32px;
}
div.list {
    display: table;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
 }
div.row {
    display: table-row;
    height: 40px;
    line-height: 40px;
}
div.title:nth-child(even) {
    background: light-dark(rgba(0, 0, 0, 0.02), rgba(255, 255, 255, 0.02));
}
div.selected {
    color: white !important;
    background-color: #007aff !important;
}
div.title:hover {
    background-color: rgba(128, 128, 128, 0.1);
}
span.name {
    display: table-cell;
    vertical-align: middle;
    padding-left: 1em;
    border-radius: 8px 0 0 8px;
}
span.time {
    display: table-cell;
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
    text-align: right;
    padding-right: 1em;
    border-radius: 0 8px 8px 0;
}
span.sum {
    font-weight: bold;
}
hr {
    color: light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #007aff;
}
a.ornamental {
    font-family: "Garamond", serif;
    font-style: italic;
    font-size: 120%;
}
audio {
    width: 100%;
}
footer {
    margin-top: auto;
    margin-left: 32px;
    font-size: 85%;
}