﻿html, body {
	width: 100%;
	height: 100%;
	font-size: 1.05em;
}
body {
	font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
}

a, .btn-link {
    color: #84a7ce;
}
    a:hover, .btn-link:hover {
        color: #84a7ce;
    }
	a span.fa {
		color: #f2f2f2
	}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
.btn.ignore, .btn.pay {
	padding: .15rem 1rem .15rem 1rem;
	margin-top: 2px;
}

div.app {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main, table {
    flex: 1;
    background-color: #1f2935;
    color: #f2f2f2;
}

    .main .top-row {
        /*background-color: #455363;*/
    }

        .main .top-row a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

.main .top-row a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #16202b 70%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
		margin-left: 1.5rem;
    }

    .sidebar .fa {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 0.5rem;
        }

		.sidebar .nav-item.separator {
			border-top: 1px solid #d7d7d7;
			margin-top: 5px;
			padding-top: 5px;
		}

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }



/*********** Login page ***********/
.login .btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.login .btn-block {
	width: 100%;
	display: block;
}

.login * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.login {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -150px;
	width: 300px;
	height: 300px;
}

	.login h1 {
		color: #fff;
		text-shadow: 0 0 10px rgba(0,0,0,0.3);
		letter-spacing: 1px;
		text-align: center;
	}

	.login input {
		width: 100%;
		margin-bottom: 10px;
		background: rgba(0,0,0,0.3);
		border: none;
		outline: none;
		padding: 10px;
		font-size: 13px;
		color: #fff;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
		border: 1px solid rgba(0,0,0,0.3);
		border-radius: 4px;
		box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
		-webkit-transition: box-shadow .5s ease;
		-moz-transition: box-shadow .5s ease;
		-o-transition: box-shadow .5s ease;
		-ms-transition: box-shadow .5s ease;
		transition: box-shadow .5s ease;
	}

		.login input:focus {
			box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2);
		}





.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
		margin-right: 1px;
    }

	.navbar-toggler {
		margin-right: 10px;
	}
	.navbar-brand {
		display: none;
	}
	.navbar-title {
		padding-left: 1.5rem;
		color: #f2f2f2;
		margin-bottom: 0;
		overflow-x: hidden;
		width: calc(90vw - 60px);
		text-overflow: ellipsis;
		white-space: nowrap;
	}


	.links {
		font-size: 0.75em;
	}
}

@media (min-width: 768px) {
    div.app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

	.main .top-row {
		position: sticky;
		top: 0;
		z-index: 9999999;
	}

    .main > div {
        /*padding-left: 2rem !important;*/
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }
	.navbar-title {
		display: none;
	}

	.sidebar .collapse {
		/* Never collapse the sidebar for wide screens */
		display: block;
	}
}




/*********************************************************/

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}



/* page elements
----------------------------------------------------------*/
/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

label {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
}

    label.checkbox {
        display: inline;
    }



/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

/*Custom Styles*/
input:disabled, select:disabled, textarea:disabled {
    background-color: #e2e2e2;
}

.wrap-text {
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    /* Non standard for webkit */
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.dataTables_filter {
    float: right;
}

table.sort thead th {
    cursor: pointer;
}
table.dataTable {
    width: 100%;
    font-size: 90%;
}

    table.dataTable thead th {
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 5px;
        padding-right: 3px;
        border-top-style: solid;
        border-top-width: 1px;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-color: lightgray;
        font-weight: bold;
        color: #dee2e6;
    }

        table.dataTable thead th:last-child {
        }

    table.dataTable tbody td {
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-color: lightgray;
        padding: 1px;
    }

    table.dataTable tbody td:first-child {
    }
    table.dataTable tbody td:last-child {
    }

    table.dataTable tr:nth-child(even) {
        background-color: #4b5a7552;
    }

	table.dataTable td.highlight {
		background-color: #706c17;
	}

table.padded thead th, table.padded tbody td {
    padding: 4px;
}

table.field-table {
}
    table.field-table td {
        padding: 5px;
    }

    table.field-table input, table.field-table textarea {
        width: 400px;
    }
    table.field-table input[type=checkbox], table.field-table input[type=date], table.field-table input[type=datetime], table.field-table input[type=datetime-local] {
        width: auto;
    }
    table.field-table textarea {
        height: 100px;
    }
    table.field-table label {
        font-size: inherit;
        font-weight:inherit;
    }

    table.field-table tr td:first-child {
        text-align: right;
        border-right: 1px solid lightgray;
    }

    table.field-table tr td:nth-child(2) {
        padding-left: 10px;
    }

    table.field-table input, table.field-table select {
        padding: 2px;
    }

    table.field-table tr.separator td {
        border-right-style: none;
        border-bottom: 1px solid lightgray;
    }

    table.field-table tr.separator + tr td {
        border-collapse: collapse;
        padding-top: 5px;
    }

    table.field-table tr.buttons td {
        border-style: none;
        text-align: right;
    }

        table.field-table tr.buttons td input, table.field-table tr.buttons td select {
            font-size: 1.2em;
            padding: 7px;
        }

.error {
    color: red;
}

.backlink {
	margin-bottom: 10px;
}

.button-table {
	float: left;
	margin-top: 10px;
}

.section-nav {
    cursor: pointer;
    margin: 10px 0 0 10px;
    width: 100%;
}

    .section-nav:hover {
        background-color: lightgray;
    }

.data-parent {
    position: relative;
}

    .data-parent .child-f1 {
        display: inline;
        position: absolute;
        left: 0;
        margin-left: 220px;
    }

    .data-parent .child-f2 {
        display: inline;
        position: absolute;
        left: 0;
        margin-left: 440px;
    }

    .data-parent .child-f3 {
        display: inline;
        position: absolute;
        left: 0;
        margin-left: 570px;
    }

table.small-table {

}
    table.small-table .header {
        border-top: 1px solid lightgray;
        font-weight: bold;
        font-size: 110%;
    }
    table.small-table .spacer td {
        height: 10px;
    }
    table.small-table .data td {
        padding-right: 15px;
    }
    table.small-table .data td:first-child {
        padding-left: 25px;
    }


.due-range {
    color: #7ac0da;
    font-size: 120%;
    font-weight: bold;
}

.bill {
    border-top: 1px solid lightgray;
    border-left: 4px solid transparent;
    padding-top: 2px;
    padding-left: 1px;
    margin-bottom: 10px;
    transition-property: border-left-color;
    transition-duration: 1s;
    border-left-color: transparent;
}

    .bill .details {
        font-size: 90%;
        padding-left: 15px;
    }
    .bill .details input {
        font-size: 75%;
        width: 100px;
    }

    .bill .name {
        font-weight: bold;
        font-size: 1.2em;
    }
    .bill .name.paid {
        text-decoration: line-through;
    }

    .bill .date {
        text-decoration: underline;
    }

    .bill:hover, .bill:active {
        transition-property: border-left-color;
        transition-duration: 1s;
        border-left-color: #7ac0da;
    }
.bill.paid {
	opacity: 0.6;
}
.bill.ignored {
	opacity: 0.8;
}



.calendar {
    border: 1px solid darkgray;
    border-spacing: 2px;
    border-collapse: separate;
    max-width: 550px;
    display: flex;
    flex-wrap: wrap;
}
    .calendar .day {
        flex: 1 0 13%;
        padding: 2px;
        border-left: 1px solid darkgray;
        border-top: 1px solid darkgray;
        vertical-align: top;
        height: 75px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
    }

    .calendar .date {
        font-size: 75%;
        font-weight: bold;
        padding-left: 4px;
    }
    .calendar .date.alt {
        color: #6a6b6d;
    }
    .calendar .date.today {
        color: #2e63d6;
    }

    .calendar ul {
        padding: 0;
        list-style-type: none;
        font-size: 70%;
    }

table.calc_table {
    font-size: 1.0em;
}

    table.calc_table label {
        font-weight: normal;
        font-size: 1.0em;
    }

    table.calc_table tr td:first-child {
        text-align: right;
    }

    table.calc_table input {
        margin: 0;
        padding: 0;
    }

.col-parent {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
    .col-parent .left {
        margin-right: auto;
        align-self: flex-start;
    }
	.col-parent h3 {
		padding-top: 0.3125rem;
	}
    .col-parent .right {
        align-self: flex-start;
    }
    .col-parent .left.fit {
        flex-grow: 1;
        margin-right: 10px;
    }
    .col-parent .right.fit {
        flex-grow: 1;
        margin-left: 10px;
    }

	.top-row.col-parent {
		background-color: rgb(4 23 61);
	}
    .top-row.col-parent .left, .top-row.col-parent .right {
        align-self: auto;
    }

.running-total {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.06);
    color: #f2f2f2;
    font-size: 0.95rem;
}
    .running-total .label {
        opacity: 0.75;
    }
    .running-total .amount {
        font-weight: 600;
    }
    .running-total .reset {
        padding: 0;
        font-size: 0.8rem;
    }
    .running-total.empty {
        opacity: 0.5;
    }

.running-total-mobile {
    display: none;
}
@media (max-width: 767.98px) {
    .running-total-mobile {
        display: flex;
        justify-content: flex-end;
        margin: 0.5rem 0;
    }
}

.trunc {
    max-width: 300px;
    white-space: nowrap;
    display: inline-flex;
}
    .trunc div {
        overflow: hidden;
        text-overflow: ellipsis;
    }


.intro {
	font-size: 3em;
	width: 100%;
	text-align: center;
}

.detail {
	font-size: 82%;
	font-style: italic;
}

.links a {
	padding: 0 0.5em 0 0.5em;
	margin: 0.5em 0 0.5em 0;
	display: block;
	text-decoration: none;
}
.links a:hover {
	text-decoration: underline;
}
.links a:not(:last-child) {
	border-right: 1px solid lightgray;
}
.links.inline a {
	display: inline-block;
}

.efficiency-periods {
	font-size: 85%;
	margin-top: 0.25em;
}
.efficiency-periods a {
	padding: 0 0.5em;
	text-decoration: none;
}
.efficiency-periods a:hover {
	text-decoration: underline;
}
.efficiency-periods a.active {
	font-weight: bold;
	pointer-events: none;
	cursor: default;
	color: inherit;
}
.efficiency-periods a:not(:last-child) {
	border-right: 1px solid lightgray;
}

.vehicles {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.vehicle {
	flex: 1;
	min-width: 75px;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	margin: 0.75em;
	padding: 1em;
	border: 1px solid #e0e0e0e0;
	border-radius: 0.5em;
	min-width: 320px;
	max-width: 320px;
}
	.vehicle .title a {
		color: inherit;
		text-decoration: none;
	}
	.vehicle .title a:hover {
		text-decoration: underline;
	}
	.vehicle .subtitle {
		font-size: 0.8em;
		opacity: 0.8;
	}
	.vehicle .vehicle-thumb {
		max-width: 100%;
		max-height: 180px;
		border-radius: 0.25em;
		margin-bottom: 0.5em;
		object-fit: cover;
	}

.vehicle-image {
	max-width: 100%;
	max-height: 600px;
	border-radius: 0.25em;
}
.vehicle-image-edit {
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	align-items: flex-start;
	margin: 0.75em 0;
}
	.vehicle-image-edit .vehicle-image {
		max-height: 300px;
	}

.vehicle-thumb-inline {
	height: 2.8em;
	width: 2.8em;
	border-radius: 0.2em;
	object-fit: cover;
	vertical-align: middle;
	margin-right: 0.4em;
}

.vehicle-stat-row {
	display: flex;
	align-items: center;
	margin-left: 20px;
}


.child {
	font-size: 1.2em;
	margin: 0.75em;
	padding: 1em;
	border-top: 1px solid #e0e0e0e0;
}

	.child .title a {
		color: inherit;
		text-decoration: none;
	}

	.child .title a:hover {
		text-decoration: underline;
	}

	.child .subtitle {
		font-size: 0.8em;
		opacity: 0.8;
	}

.child-calendar {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	font-size: 0.9em;
}
	.child-calendar .day {
		padding-left: 8px;
		padding-right: 8px;
		border-top: 1px solid white;
		margin-bottom: 20px;
		margin-right: 5px;
		min-width: 250px;
	}
	.child-calendar .day:last-child {
	}

	.child-calendar .event-container {
		position: relative;
	}
	.child-calendar .event {
	}
	.child-calendar .event.sub {
		padding-left: 20px;
	}
	.child-calendar .marker-container {
		border-top: solid 1px #a9a9a975;
	}
	.child-calendar .marker {
		position: absolute;
		top: 0;
		right: 0;
		display: inline;
		color: #a9a9a975;
	}

	.child-calendar .detailbox {
		display: inline-block;
	}
@media (max-width: 767.98px) {
	.child-calendar .day {
		width: 100%;
		margin-right: auto;
	}
}

.child-event-nav {
	border-top: 1px solid white;
	margin-top: 2px;
	padding-top: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
	.child-event-nav .prev {
	}
	.child-event-nav .pick {
	}
		.child-event-nav .pick input {
			padding: 0;
			border-width: 0;
			padding-left: 2px;
			font-size: 90%;
		}
	.child-event-nav .next {
	}

.iframe-container {
	position: fixed;
	z-index: 99999999;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-color: #41464bc7;
}
	.iframe-container iframe {
		width: 85vw;
		height: 90vh;
		border: solid 1px;
		border-radius: 8px;
	}
	.iframe-container .loader {
		width: 85vw;
		height: 90vh;
		border: solid 1px;
		border-radius: 8px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 300%;
		background-color: #1f2935;
	}


.modal-parent {
	position: fixed;
}

.loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.5em;
}

.record-edit {
	display: flex;
	flex-direction: column;
}
	.record-edit .section {
		flex: 1;
	}
	.record-edit .section>div {
		margin-bottom: 5px;
	}
	.record-edit .field span:not(.fa), .record-edit .field label {
		display: inline-block;
	}
	.record-edit .field span:not(.fa), .record-edit .field label:first-child {
		vertical-align: top;
		width: 125px;
	}
	.record-edit .btn {
		align-self: flex-end;
		min-width: 150px;
		margin-top: 10px;
	}
	.record-edit .field.separator {
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom-style: solid;
		border-bottom-width: 1px;
		border-color: lightgray;
	}
	.record-edit .record-data {
		display: inline-block;
	}
	.record-edit .button-group {
		align-self: flex-end;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.record-edit input[type=number] {
		max-width: 100px;
	}

.note {
	font-style: italic;
	font-size: 85%;
}

.fuel-edit {

}
	.fuel-edit label {
		display: inline-block;
		min-width: 150px;
		white-space: nowrap;
		font-size: 1em;
	}
	.fuel-edit input[type=text] {
		width: 250px;
	}
	.fuel-edit textarea {
		width: 250px;
		height: 100px;
	}
	.fuel-edit input[type=date], .fuel-edit input[type=number] {
		width: 145px;
	}

@media (max-width: 767.98px) {
	.fuel-edit {
		padding-bottom: 5rem;
	}
	.fuel-edit-submit {
		position: fixed;
		right: 1rem;
		bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
		width: auto;
		display: inline-block;
		z-index: 1000;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	}
}


.fuel-list {
}
.fuel-list .fill-up {
	border-top: 1px solid lightgray;
	margin-top: 5px;
}

.vehicle-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1em;
	margin: 0.5em 0;
}
	.vehicle-header .vehicle-header-image {
		max-width: 200px;
		max-height: 150px;
		flex: 0 0 auto;
	}
	.vehicle-header .vehicle-header-info {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 0.25em;
	}
	.vehicle-header .vehicle-header-title {
		font-size: 1.4em;
		font-weight: bold;
	}
	.vehicle-header .vehicle-header-stats {
		display: flex;
		flex-wrap: wrap;
		gap: 0.25em 1em;
	}
	.vehicle-header .vehicle-header-edit {
		flex: 0 0 auto;
		align-self: flex-start;
	}
	.vehicle-header .last-fill-distance {
		opacity: 0.75;
		margin-left: 0.25em;
	}
	.vehicle-header .trend {
		margin-left: 0.25em;
	}

.trend-up {
	color: #2a8a2a;
}
.trend-down {
	color: #b04040;
}

.fill-up-month {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em 1em;
	margin-top: 1.5em;
	padding-bottom: 0.25em;
	border-bottom: 2px solid #888;
	font-size: 0.95em;
}
	.fill-up-month .month-name {
		font-weight: bold;
		font-size: 1.1em;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}
	.fill-up-month .month-vehicle-total {
		opacity: 0.85;
	}

.fill-up {
	display: flex;
	flex-direction: row;
}
	.fill-up a {
		text-decoration: none;
	}
	.fill-up a:hover {
		text-decoration: underline;
	}
	.fill-up .title {
		flex: 1;
		display: flex;
		align-items: center;
		padding-right: 8px;
	}
		.fill-up .title a {
			display: inline-flex;
			align-items: center;
			gap: 0.4em;
		}
		.fill-up .title .title-text {
			display: flex;
			flex-direction: column;
		}
		.fill-up .title .title-odometer {
			font-size: 0.8em;
			opacity: 0.75;
		}
	.fill-up .highlights {
		flex: 2;
		font-weight: bold;
	}
	.fill-up .fill-up-detail {
		flex: 5;
	}
	.fill-up .details {
		font-size: 0.8em;
		opacity: 0.9;
	}
	.fill-up .efficiency {
	}
	.fill-up .distance {
		display: block;
	}
	.fill-up .date {
		font-weight: bold;
	}
	.fill-up .edit {
		flex: 1;
		display: flex;
		align-items: center;
	}


.static {
	position: fixed;
	bottom: 5px;
	display: block !important;
	right: 5px;
	z-index: 10000;
	padding: 10px 15px;
	border: solid 1px black;
	border-radius: 4px;
	background-color: #f2f2f2;
	font-size: 0.9em;
	color: black;
	min-width: 300px;
}
@media (max-width: 767.98px) {
	.static {
		left: 5px;
		min-width: auto;
	}
}

.fixed {
	position: fixed;
	right: 10px;
}
@media (max-width: 767.98px) {
    .calendar.fixed {
        right: auto;
    }
}

@media screen and (max-width: 800px) {
    table {
        border: 1px solid transparent;
        box-shadow: none;
    }

        table thead {
            display: none;
        }

        table tr {
            border-bottom: 2px solid #F8F8F8;
        }

            table tr td:first-child {
                padding-left: 10px;
            }

            table tr td:before {
                content: attr(data-label);
                float: left;
                font-size: 10px;
                text-transform: uppercase;
                font-weight: bold;
            }

            table tr td {
                display: block;
                text-align: right;
                font-size: 14px;
                padding: 0px 10px !important;
                box-shadow: 0 1px 1px rgba(0,0,0,.3);
            }

	#childMain {
		font-size: 90%;
	}
	.record-edit {
		font-size: 90%;
	}
		.record-edit .btn {
			min-width: 115px;
		}
}
/* User management table: keep header and username text legible on the .account pages (issue #400). */
.account .table { background-color: #fff; color: #212529; }
.account .table thead th { background-color: #343a40; color: #fff; }
