
* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
    font-size: 15px;
}

:root {
    --ht-bg: #f8fafc;
    --ht-card: #ffffff;
    --ht-border: #0002;
    --ht-muted: #6b7280;
    --ht-text: #111827;
    --ht-primary: steelblue;
    --ht-accent: #0a84ff;
}

hid {
    display: none;
    z-opacity: 0.3;
}

busy {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background: #024;
    opacity: 0.1;
}

a {
    color: steelblue;
    text-decoration: none;
    opacity: 0.85;
}
a:hover {
    opacity: 1.0;
}

.hot {
    cursor: pointer;
    opacity: 0.9;
}
.hot:hover {
    opacity: 1.0;
}

input, textarea, select {
    font-size: 90%;
    padding: 0.25em 0.75em;
}

/* - - - - - - - - - - - - - - - - - - */

dialog {
    min-width: 40vw;
    max-width: 95vw;
    box-shadow: 0px 4px 8px 0px #0005;
    border: solid 2px #0007;
    border-radius: 0.4em;
    padding: 2em 3vw;
}

dialog heading {
    display: block;
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 1.0em;
    text-align: center;
}

dialog guts {
    display: block;
    margin-bottom: 1.0em;
}

dialog guts textarea {
    padding: 0.7em;
}

dialog buttons {
    display: block;
    text-align: right;
}

button {
    border: dashed 1px blue;
}

a.button.credit {
    background-color: #0a0;
    color: #fffd;
}
a.button.debit {
    background-color: #a00;
    color: #fffd;
}

heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


