/**/
nav { height: 7vh; }
main { 
	padding-top: 7vh;
	/* height: 93vh; */
}

:root {
	--dark-mode: gray;
	--light-mode: white;
	--bgColour : var(--dark-mode);
}

#test {
	background-color: var(--bgColour);
}

#invoicePane {
	/* height: 93vh; */
	/* overflow-y: scroll; */
}

#ticketListControls, #invoiceListControls {
	padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    /* border: 3px solid black; */
}

#paymentAmount::-webkit-outer-spin-button, #paymentAmount::-webkit-inner-spin-button, #paymentAmount {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    -moz-appearance:textfield; /* Firefox */
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

#searchBox {
	width: 120%;
	padding-left: 12px;
	padding-right: 12px;
}

#searchBox a, #clientSearchBox a {
	display: inline-flex;
    justify-content: space-between;
}

#clientSearchBox {
	padding-left: 12px;
	padding-right: 12px;
}

#pdfModalBody {
    overflow-y: hidden !important;
}

#ticketPane {
	padding-bottom: 10px;
	/* height: 93vh; */
    /* overflow-y: scroll; */
}

.sbLeft {
    margin-inline-end: 10px;
}

.textTruncate {
	overflow: hidden;
    text-overflow: ellipsis;
	white-space: nowrap;
}


a.ticketLink {
	display:contents;
	text-decoration: none;
	color: unset;
	cursor: auto;
}

.cellTruncate, .cellTruncate-nohover{
	max-width: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cellTruncate:hover{
    overflow: unset;
    white-space: normal;
	/* background-color: yellow; */
}

.fullHeightPane {
	height: 93vh;
    max-height: 93vh;
}

.mainPaneRow {
	height: 33.33%; 
	overflow: hidden;
	padding-bottom: 8%;
}

.sidePaneScrollbox {
	overflow: auto;
	height: -webkit-fill-available;
	padding: unset;
}

.scrollbox {
	overflow-x: hidden;
    overflow-y: scroll;
	height: 83vh;
    max-height: 83vh;
	padding: unset;
}


.ticketPaneRow {
	height: 50%; 
	overflow: hidden;
	padding-bottom: 8%;
}

.form-label-inv-margin {
	margin-bottom: -.5rem
}

.navBtn {
	margin-inline: .5vw;
}

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

.buttonFloatR {
	float: right;
	width: auto;
}

.invoiceCurrency {
	text-align: right;
}

.noSelect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

tr>td {
  vertical-align: middle;
}