
html, body {
    --bs-body-font-size: 0.8rem;
    --bs-body-font-family: Montserrat,sans-serif !important;
    font-family: var(--bs-body-font-family);
}
.table { 
    --bs-table-hover-bg: rgba(136, 180, 29, 0.15); 
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #88b31d;
    border-color: #88b31d;
}

.badge-primary {
    background-color: #88b31d;
}

.btn-primary:hover {
    background-color: #114706;
    border-color: #114706;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.table .form-control {
    border: none;
    margin: 0;
    font-size: var(--bs-body-font-size);
    font-family: var(--bs-body-font-family);
    display: inline-block;
    background-color: transparent;
}

.table .form-control:not([type=search]) {
    padding: 0;
}

.table .form-control.quantity {
    width: 4rem;
}

.btn,
.form-control {
    font-size: var(--bs-body-font-size) !important;
    font-family: var(--bs-body-font-family);
}

.table {
    table-layout: fixed;
    min-width: 100%;
    width: auto;
}

.table .btn.btn-link {
    padding: 0;
}

.table .form-control:focus {
    box-shadow: none;
}

.table .form-control:disabled {
    background-color: transparent;
}

.table select.form-control {
    margin-left: -5px;
}

.table thead th:not(:first-child) {
    white-space: nowrap;
}

.table td,
.table th {
    white-space: nowrap;
}

.table td {
    vertical-align: middle;
}

table.highlight {
    overflow: hidden;
}

table.highlight tr:hover {
    background-color: rgba(136, 179, 29, 0.2);
}
table.highlight td {
    position: relative;
}
table.highlight td:hover::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -9999px;
    bottom: -9999px;
    background-color: rgba(136, 179, 29, 0.2);
    z-index: -1;
}

.form-switch {
    padding-left: 0;
}

.form-check {
    padding-left: 0;
}

.form-switch .form-check-input {
    margin-left: 0;
}

.form-check .form-check-input {
    float: none;
    margin-left: 0;
}

.form-control[autocomplete=off] {
    appearance: textfield;
}