body {
    padding: 0 0;
    margin: 0 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

ion-toolbar {
    --background: #1A77BA;
    --color: white;
}

ion-progress-bar {
    --background: lightblue;
    --progress-background: #1a77ba;
}

#content {
    position: fixed;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.page {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 960px;
}

.build-info {
    font-size: 9px;
    color: silver;
    padding: 6px;
}

@media (min-width: 576px) {
    .page {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .page {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .page {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .page {
        max-width: 1140px;
    }
}

#alert {
    touch-action: unset;
    -webkit-user-select: unset;
    -moz-user-select: unset;
    -ms-user-select: unset;
    user-select: unset;
}

select {
    display: block;
    border: none;
    border-radius: 4px;
    background: #e9e9ed;
    padding: 0.4rem 0.8rem;
    margin: 4px 0px;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.buttonbar {
    justify-content: end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 6px 6px;
}

.large-icon {
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 6px;
}

.medium-icon {
    width: 24px;
    height: 24px;
    float: left;
    margin-right: 6px;
}

table,
th {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 1em;
}

thead {
    background: #e9e9ed;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

td {
    padding: 1em;
}

tfoot th,
tfoot td {
    border: none;
    border-top: 1px solid black;
    font-weight: bold;
}

section {
    width: 100%
}

summary {
    padding: 6px;
    cursor: pointer;
}

option[value="new-org"] {
    color: #3880ff;
}

.notice {
    color: red;
}

.align-items-center {
    align-items: center;
}

span.coupon {
    border-radius: 6px;
    padding: 6px;
    background: grey;
    color: white;
    margin-right: 1em;
}

span.coupon[valid] {
    background: green;
}

span.coupon[invalid] {
    background: red;
}
