:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

:focus {
    outline: none;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

*:not(input):not(textarea) {
    user-select: none;
}


input[type="text"],
input[type="password"],
input[type="submit"],
input[type="date"],
input[type="time"],
textarea,
button {
    appearance: none;
    -webkit-appearance: none;
    /*-webkit-border-radius: 0;*/
}

body {
    font-size: 13px;
    background-color: #ddd;
}

h2 {
    font-size: 11px;
    font-weight: normal;
    margin-bottom: 7px;
    text-transform: uppercase;
    position: relative;
    left: 5px;
}

h2.has-button-to-right {
    float: left;
    position: relative;
    top: 25px;
}

a {
    color: #000;
    outline: none;
}

a .feather {
    vertical-align: middle;
    position: relative;
    top: 0;
}

.occasion_booking,
.scheme_booking {
    margin-top: 10px;
}

.scheme_booking span,
.scheme_booking a {
    display: table-cell;
    width: 70px;
    vertical-align: middle;
}

#main-header {
    display: block;
    min-width: 320px;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    background: #222;
    z-index: 4500;
}

#header-menu,
#header-logout,
#header-user {
    text-decoration: none;
    margin-top: 15px;
    margin-left: 15px;
    float: left;
    color: #eee;
    padding: 2px;
}

#header-logout span, #header-user span {
    display: none;
    padding-left: 10px;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.66);
    z-index: 5000;
    overflow: scroll;
}

#modal {
    margin: 25px auto 25px auto;
    padding: 25px 25px 5px 25px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    color: #eee;
    background-color: #333;
}

#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.66);
    z-index: 10000;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1440px) {
    body {
        background-color: #111;
    }

    #main-header {
        width: 1440px;
    }

    #page-wrap {
        min-height: calc(100vh - 60px);
    }
}

@media screen and (min-width: 768px) {
    #header-menu {
        display: none;
    }
    #header-logout span, #header-user span {
        display: inline;
    }
}

#header-logo {
    display: block;
    width: 49px;
    height: 30px;
    text-indent: -5000px;
    top: 15px;
    margin-left: -24.5px;
    left: 50%;
    background-image: url(qt.svg);
    position: absolute;
}

#header-logout {
    margin-right: 15px;
    float: right;
}

#header-user {
    padding: 2px;
    color: #fff;
    margin-top: 15px;
    float: right;
}

#object-calendar-wrapper {
    display: none;
}

@media screen and (min-width: 573px) {
    #bookings-current-future-wrapper {
        float: left;
        width: calc(50% - 13px);
    }

    #bookings-past-wrapper {
        width: calc(50% - 13px);
        float: right;
    }

    #bookings-past-wrapper:after {
        content: '';
        display: block;
        clear: both;
    }
}

@media screen and (min-width: 573px) {
    #object-calendar-wrapper {
        display: block;
    }

    #object-calendar-mobile-wrapper {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    #header-logo {
        margin-top: 15px;
        position: relative;
        left: auto;
        top: auto;
        float: left;
        width: 128px;
        margin-left: 15px;
        background-image: url(qtsystems_horizontal.svg);
    }
}

#side-nav {
    width: 170px;
    height: calc(100% - 94px);
    padding: 25px 0 9px 25px;
    position: fixed;
    left: -195px;
    top: 60px;
    background: #333;
    z-index: 4000;
    overflow: auto;
}

@media screen and (min-width: 768px) {
    #side-nav {
        left: auto;
    }
}

#side-nav ul {
    list-style-type: none;
}

#side-nav li {
    margin-bottom: 16px;
    color: #eee;
}

#side-nav a {
    text-decoration: none;
    color: #eee;
    display: inline-block;
    width: 145px;
    position: relative;
    top: 1px;
}

#side-nav a span {
    width: 111px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

#side-nav .feather {
    margin-right: 10px;
    vertical-align: middle;
}

#side-nav ul ul {
    display: none;
    margin: 15px 0 0 -25px;
    padding: 20px 0 9px 25px;
    background-color: #666;
}

#page-wrap {
    background: #ddd;
    margin: 0 auto;
    max-width: 1440px;
    padding-top: 60px;
}

#content-wrap {
    padding: 15px;
}

@media screen and (min-width: 768px) {
    #content-wrap {
        margin-left: 195px;
        padding: 25px;
    }
}

#login-form-wrap {
    margin: 25px auto 25px auto;
    padding: 25px 25px 5px 25px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    color: #eee;
    background-color: #333;
}

#login-form-wrap input,
#login-form-wrap p,
#login-form-wrap .message {
    margin-bottom: 20px;
}

#login-form-wrap a {
    text-decoration: none;
    color: #eee;
}

#login-form-wrap .logo {
    display: block;
    text-indent: -5000px;
    width: 170px;
    height: 40px;
    margin: 0 auto 25px auto;
    background-image: url(qtsystems_horizontal.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#login-form-wrap .input,
#login-form-wrap .button {
    box-sizing: content-box;
    border: 1px solid #eee;
    border-radius: 6px;
    width: 228px;
    height: 16px;
    line-height: 16px;
    padding: 8px 10px;
    color: #333;
    background-color: #eee;
}

#login-form-wrap .input-upper {
    border-radius: 6px 6px 0 0;
    margin-bottom: 0;
}

#login-form-wrap .input-middle {
    border-top: 1px solid #333;
    border-radius: 0;
    margin-bottom: 0;
}

#login-form-wrap .input-lower {
    border-top: 1px solid #333;
    height: 17px;
    border-radius: 0 0 6px 6px;
}

#login-form-wrap .checkbox {
    margin-right: 10px;
}

#login-form-wrap .message {
    display: block;
    padding: 10px;
    border-radius: 6px;
}

#login-form-wrap .message-success,
#login-form-wrap .button-ok {
    color: #fff;
    background-color: #28a745;
    border: 1px solid #28a745;
}

#login-form-wrap .message-danger {
    color: #fff;
    background-color: #dc3545;
}

#week-nav-buttons {
    display: block;
    float: right;
    padding-bottom: 15px;
}

#week-nav-buttons a {
    display: inline-block;
    padding: 6px 10px;
    margin-left: 10px;
}

#week-nav-buttons a:after {
    content: '';
    display: block;
    clear: both;
}

#object-calendar-mobile-wrapper .block {
    margin-top: 10px;
    clear: both;
}

#object-calendar-wrapper .block {
    margin-top: 10px;
    clear: both;
}

.object-calendar,
.object-calendar-mobile {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.object-calendar th,
.object-calendar td {
    padding: 0 5px 3px 0;
}

.object-calendar td,
.object-calendar-mobile td {
    padding: 0 1px 1px 0;
}

.object-calendar .period {
    border-radius: 6px;
    height: 40px;
    opacity: 1;
}

.object-calendar-mobile th,
.object-calendar-mobile td {
    text-align: left;
}

.object-calendar .sunday,
.object-calendar-mobile .sunday {
    color: #d00;
}

.object-calendar-mobile .period {
    float: left;
    display: inline;
    padding: 10px;
    margin: 5px 5px 10px 0;
    border-radius: 6px;
    height: auto;
    opacity: 1;
    text-align: center;
}

.object-calendar .period:hover {
    opacity: 0.66;
    cursor: pointer;
}

.object-calendar .unavailable,
.object-calendar-mobile .unavailable {
    color: #fff;
    background-color: var(--red);
}

.object-calendar .available,
.object-calendar-mobile .available {
    color: #fff;
    background-color: var(--green);
}

.object-calendar .passed,
.object-calendar-mobile .passed {
    background-color: var(--accentFg);
}

.object-calendar .own,
.object-calendar-mobile .own {
    color: #fff;
    background-color: var(--blue);
}

.object-calendar .feather {
    margin: 0 10px;
    vertical-align: middle;
}

.message {
    display: block;
    padding: 10px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: normal;
}

.message-slim {
    margin: 0;
}

.message-success {
    color: #fff;
    background-color: #28a745;
}

.message-warning {
    color: #000;
    background-color: #ffc107;
}

.message-danger {
    color: #fff;
    background-color: #dc3545;
}

.block {
    margin-bottom: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
}

.button {
    cursor: pointer;
    width: auto;
    color: #eee;
    padding: 11px 13px;
    border-radius: 6px;
    background-color: #6c757d;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
}

.address {
    display: inline-block;
    width: auto;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #efefef;
    margin: 0 15px 15px 0;
}

.button-small {
    padding: 6px 8px;
}

.button-wide {
    text-align: center;
    display: block;
}

.button-ok {
    background-color: #28a745;
}

.button-ok:disabled {
    background-color: #a7a7a7;
}

.button-danger {
    background-color: #dc3545;
}

.button-to-right {
    margin-bottom: 10px;
    margin-left: 10px;
    float: right;
}

#user-profile th,
#user-profile td {
    padding: 0 10px 6px 0;
}

#user-profile th {
    text-align: right;
}

.required {
    color: #c00;
    font-weight: bold;
}

#settings-save-profile,
#settings-save-password {
    width: 250px;
}

form div>label {
    display: inline-block;
    width: 170px;
    padding-right: 10px;
    margin-bottom: 10px;
}

form div>input[type="text"],
form div>input[type="date"],
form div>input[type="time"],
form div>input[type="password"],
form div>input[type="email"],
form div>input[type="phone"],
form div>select {
    width: 228px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 16px;
    line-height: 16px;
    vertical-align: top;
}

form div>input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 5px;
}

form div>textarea {
    font-size: 13px;
    width: calc(100% - 22px);
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 218px;
    line-height: 150%;
}

:root {
    --radius: 6px;
    --baseFg: #000;
    --baseBg: #fff;
    --accentFg: #eee;
    --accentBg: #333;
}

.theme-pink {
    --radius: 2em;
    --baseFg: #c70062;
    --baseBg: #ffe3f1;
    --accentFg: #c70062;
    --accentBg: #ffaad4;
}

.theme-construction {
    --radius: 0;
    --baseFg: white;
    --baseBg: black;
    --accentFg: black;
    --accentBg: orange;
}

select {
    height: 16px;
    line-height: 16px;
    box-sizing: content-box;
    margin-bottom: 10px;
    width: 200px;
    -webkit-appearance: none;
    appearance: none;
    color: var(--baseFg);
    border: 1px solid var(--baseFg);
    line-height: 1;
    outline: 0;
    padding: 8px 10px;
    border-radius: var(--radius);
    background-color: var(--baseBg);
    background-image: linear-gradient(var(--baseFg), var(--baseFg)),
        linear-gradient(-135deg, transparent 50%, var(--accentBg) 50%),
        linear-gradient(-225deg, transparent 50%, var(--accentBg) 50%),
        linear-gradient(var(--accentBg) 42%, var(--accentFg) 42%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 1px 100%, 20px 22px, 20px 22px, 20px 100%;
    background-position: right 20px center, right bottom, right bottom, right bottom;
}

select:hover {
    background-image: linear-gradient(var(--accentFg), var(--accentFg)),
        linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
        linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
        linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
}

select:active {
    background-image: linear-gradient(var(--accentFg), var(--accentFg)),
        linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
        linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
        linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
    color: var(--accentBg);
    border-color: var(--accentFg);
    background-color: var(--accentFg);
}

.manually-on-picker, .choose-amount-picker {
    display: inline;
    float: left;
    margin-right: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.manually-on-picker.selected, .choose-amount-picker.selected {
    border: 2px solid var(--green);
}

.manually-on-picker.disabled, .choose-amount-picker.disabled {
    border: 2px solid #eee;
    color: #aaa;
    cursor: auto;
    text-decoration: line-through;
}

.manually-on-picker-wrapper:after, .choose-amount-picker-wrapper:after {
    content: '';
    display: block;
    clear: both;
}

.dow-picker {
    margin-left: 5px;
    padding: 6px;
    border-radius: 6px;
    box-sizing: border-box;
    border: 2px solid #6c757d;
    width: 31px;
    float: left;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.dow-picker.selected {
    border: 2px solid #28a745;
}

.dow-picker:first-of-type {
    margin-left: 0;
    width: 32px;
}

.dow-picker:last-of-type {
    width: 32px;
}

.lights-minute-picker {
    margin-left: 9px;
    padding: 6px;
    border-radius: 6px;
    box-sizing: border-box;
    border: 2px solid #6c757d;
    width: 77px;
    float: left;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.lights-minute-picker.selected {
    border-color: var(--green);
}

.lights-minute-picker:first-of-type,
.lights-minute-picker:nth-of-type(4) {
    margin-left: 0;
}

.list-item,
.block {
    box-shadow: 1px 1px 3px #ccc;
}

.list {
    list-style-type: none;
    max-width: 640px;
}

.list-wide {
    max-width: none;
}

.list .list-item {
    display: block;
    background-color: #fff;
    margin-bottom: 1px;
}

.list .list-item:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.list .list-item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-bottom: 15px;
}

.list .list-item:after {
    content: '';
    display: block;
    clear: both;
}

.list .list-item .link {
    float: left;
    width: calc(100% - 61.5px);
    display: block;
    padding: 11px 0 11px 15px;
    text-decoration: none;
    line-height: 24px;
}

.list .list-item .link-high {
    line-height: 18px;
}

.list .list-item .link-wide {
    width: calc(100% - 22.5px);
}

.list .list-item .link-full {
    width: calc(100% - 15px);
}

.list .list-item .link .status {
    margin-right: 11px;
}

.list .list-item .link .status-high {
    float: left;
    margin: 6px 11px 6px 0;
}

.list .list-item .favorite {
    float: right;
    padding: 11px 15px 11px 7.5px;
}

.list .list-item .favorite-high {
    padding: 17px 15px 18px 7.5px;
}

.list .list-item .status-unlocked {
    color: #0c0;
}

.list .list-item .status-locked {
    color: #c00;
}

.list .list-item .favorite-false {
    color: #ccc;
}

.list .list-item .favorite-true {
    color: var(--yellow);
    fill: var(--yellow);
}

.list .list-item .status-expired {
    color: #ccc;
}

.list .list-item .status-valid {
    color: var(--yellow);
}

.list .list-item .link-current {
    font-weight: bold;
}

.list .list-item .status-out {
    color: #ccc;
}

.list .list-item .status-lit {
    color: var(--yellow);
    fill: var(--yellow);
}

.list .list-item .status-on {
    /*fill: #0c0;*/
    stroke: #0c0;
}

.list .list-item .status-off {
    color: #ccc;
}

.list .list-item .status-loading-on {
    color: #ccc;
    animation: spin-fwd 2s linear infinite;
}

@keyframes spin-fwd {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.list .list-item .status-loading-off {
    color: #ccc;
    animation: spin-bwd 2s linear infinite;
}

@keyframes spin-bwd {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.list .list-item .delete {
    float: right;
    padding: 11px 15px 11px 7.5px;
    stroke: #c00;
}

.list .list-item .logout {
    float: right;
    padding: 11px 15px 11px 7.5px;
    stroke: #333;
}

.list .list-item .imd-water {
    stroke: DarkTurquoise;
    fill: Turquoise;
}

.list .list-item .imd-electricity {
    stroke: darkorange;
    fill: orange;
}

.list .list-item .imd-temperature {
    fill: #c00;
    stroke: #ccc;
}

.list .list-item .outlet-label-wrap {
    line-height: 36px;
    float: right;
    margin-right: 7.5px;
}

.list .list-item .outlet-label {
    background-color: #eee;
    border-radius: 4px;
    border: 1px solid #6c757d;
    color: #111;
    font-size: 11px;
    padding: 4px 6px;
    /*position: relative;
    top: 6px;*/
}

.list .list-item .outlet-group {
    font-size: 11px;
}

#session-info {
    border-collapse: collapse;
    margin-bottom: 20px;
}

#session-info th,
#session-info td {
    vertical-align: top;
    padding: 0 0 4px 0;
    text-align: left;
}

#session-info th {
    padding-right: 5px;
}

#session-info #session-token {
    word-break: break-all;
}

@media only screen and (hover: none) and (pointer: coarse) {
    input,
    select,
    textarea {
        font-size: 13px;
    }

    input:focus,
    select:focus,
    textarea:focus {
        font-size: 16px;
    }
}

#footer {
    clear: both;
    font-size: 11px;
    padding-left: 5px;
    max-width: 630px;
}

div#pwa-install-ios {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 10px;
    bottom: 0;
    color: #a2a2a2;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    left: 8px;
    margin: 8px auto;
    max-width: 400px;
    position: fixed;
    right: 8px;
    z-index: 5000;
}
div#pwa-install-ios h1 {
    color: #000;
    margin: 15px;
    font-size: 16px;
    font-weight: bold;
    float: left;
}
div#pwa-install-ios h1 + a {
    color: #08f;
    margin: 15px;
    font-size: 16px;
    float: right;
    text-decoration: none;
}
div#pwa-install-ios h1 + a + hr {
    clear: both;
    margin: 15px 0;
}
div#pwa-install-ios hr {
    border: 0;
    height: 0;
    border-top: 1px solid #ccc;
    margin: 15px;
}
div#pwa-install-ios p, div#pwa-install-ios ol {
    margin: 15px;
}
div#pwa-install-ios ol {
    margin: 0px 40px 10px 40px;
    padding: 0px 5px 5px 5px;
}
div#pwa-install-ios li:first-of-type span {
    color: #08f;
}
div#pwa-install-ios li span {
    color: #000;
}
div#pwa-install-ios li {
    padding: 5px;
    padding-left: 5px;
    line-height: 24px;
}
div#pwa-install-ios li span{
    margin: 0 2px;
}
div#pwa-install-ios li .feather {
    vertical-align: middle;
    position: relative;
    top: -1px;
}
div#pwa-install-ios::after {
    content: "";
    clear: both;
    display: table;
}

@media (prefers-color-scheme: dark) {
    div#pwa-install-ios {
        color: rgb(180, 180, 180);
        background-color: rgba(0, 0, 0, 0.5);
    }
    div#pwa-install-ios h1 {
        color: #fff;
    }
    div#pwa-install-ios h1 + a {
        color: #0d90ff;
    }
    div#pwa-install-ios hr {
        border-top-color: rgb(130, 130, 130);
    }
    div#pwa-install-ios li:first-of-type span {
        color: #0d90ff;
    }
    div#pwa-install-ios li span {
        color: #fff;
    }
}

div#pwa-install-android {
    background-color: #F7F2FA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
    box-sizing: border-box;
    display: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    left: 0;
    margin: 72px auto 0 auto;
    max-width: 640px;
    padding: 20px;
    position: fixed;
    right: 0;
    z-index: 5000;
}
div#pwa-install-android h1 {
    font-weight: normal;
    font-size: 32px;
    margin: 10px 0 25px 0;
}
div#pwa-install-android p {
    margin: 0 0 30px 0;
}
div#pwa-install-android a {
    float: right;
    text-decoration: none;
    padding: 10px 20px;
    color: #6750A4;
    background-color: transparent;

    border-radius: 100px;
    margin-left: 10px;
}
div#pwa-install-android a:first-of-type {
    color: white;
    background-color: #6750A4;
}

@media (prefers-color-scheme: dark) {
    div#pwa-install-android {
        background-color: #1D1B20;
    }
    div#pwa-install-android h1 {
        color: white
    }
    div#pwa-install-android p {
        color: white;
    }
    div#pwa-install-android a {
        color: #D0BCFF;
        background-color: transparent;
    }
    div#pwa-install-android a:first-of-type {
        color: #381E72;
        background-color: #D0BCFF;
    }
}

.menu-item.pwa-install {
    display: none;
}

#transactions {
    width: 100%;
    border-collapse: collapse;
    border: transparent 2px;
    margin-top: 10px;
}
#transactions th {
    font-weight: normal;
    text-align: left;
    padding: 5px 5px 5px 7px;
    background-color: var(--yellow);
}
#transactions td {
    padding: 5px 5px 5px 7px;
    border-bottom: 1px solid var(--yellow);
}
#transactions tr:nth-child(odd) {
    background-color: #f6f6f6;
}
#transactions td:nth-of-type(n+3),
#transactions th:nth-of-type(n+3) {
    text-align: right;
}

#balance {
    margin: 0 auto;
    background-color: var(--yellow);
    padding: 10px 50px;
    text-align: center;
    border-radius: 50px 10px 50px 10px;
}

#balance span {
    display: block;
    font-weight: bold;
    font-size: 200%;
    margin-top: 5px;
}
