/* bootstrap primary colors overrides */
.btn-primary {
    background-color: #03b217 !important;
    border-color: #03b217 !important;
}
.btn-primary:hover {
    background-color: #0d881b !important;
    border-color: #0d881b !important;
}
.btn-outline-primary {
    color: #03b217 !important;
    border-color: #03b217 !important;
}
.btn-outline-primary:hover {
    background-color: #03b217 !important;
    color: white !important;
}

.text-primary {
    color: #03b217 !important;
}

.page-link { 
    color: #03b217 !important;
}

li.active > .page-link {
    color: white !important;
    background-color: #03b217 !important;
    border-color: #03b217 !important;
}

.nav-link { 
    color: #03b217;
}

.nav-link:hover { 
    color: #0d881b;
}

/* Logo */
.navbar-brand {
    color:  #03b217 !important;
    font-weight: bold;
}

/* hover over clickable table rows */
.clickable {
    cursor: pointer;
}

/* show an * on mandatory form fields */
label.required:after {
  content: " *";
  color: #03b217;
}

/* labels */
label, legend {
    padding-top: 0 !important;
    font-weight: bold;
    margin-bottom: .3rem;
}

/* active menuitem */
.active a {
    color: #27a745 !important;
    /* color: #03b217 !important; */
    font-weight: bold;
}

/* placeholders */
::placeholder {
  font-style: italic;
  color: #CCC !important;
}

/* ritten table */
.table-ritten {
    font-size: 10px;
}

.table-ritten td, .table-ritten th {
    border: none;
}

.table-ritten table {
    border-bottom: 1px solid blue; 
    margin-bottom: 0;
}

.table-ritten table:hover {
    background-color: #eee;
}

@media (min-width: 786px) {
   .table-ritten {
        font-size: 12px;
    }
}
@media (min-width: 1200px) {
   .table-ritten {
        font-size: 14px;
    }
}

/* background */
body, .table, input, select, textarea {
    background-color: #F8F8FF !important; /* #F8F8FF; */
}

/* undo link */
.text-undo
{
    color: grey;
}
.text-undo:hover
{
    color: red;
}

/* z-index for autocomplete in modal */
.ui-autocomplete {
    z-index: 10000;
}