html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    position: relative;
    min-height: 100%;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

a {
    text-decoration: none;
    color: #0099CC;
}
    a:hover {
        color: #03650f; 
    }
    
/* table style */
th {
    vertical-align: middle;
    text-align: center;
}

td.title, .table-header {
    background-color: #cfe2ff;
    color: black;
}

/* navigation bar and dropdown menus */
.navbar-bg-color {
    background-color: #4d4490;
}

.nav-item.dropdown .dropdown-toggle::after {
    color: white;
    margin-left: 5px;
}

.dropdown-menu {
    background-color: #ddd6f3;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

@media (max-width: 767px) {
    .navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: start; 
    }
}


/* text style */
.black-text {
    color: black;
}

.red-text {
    color: #CC0000;
}

.blue-text {
    color: #0099CC;
}

.green-text {
    color: #03650f;
}

.gray-text {
    color: #666666;
}

.purple-text {
    color: #990099;
}

.purple-dark-text {
    color: #6165D7;
}

.white-text {
    color: white;
}

.navy-text {
    color: #1B3C73;
}

.form-group {
    margin-bottom: 14px;
}

label {
    font-weight:600;
}

/*-- Page blocked while aJax processing job------------------*/
#ajaxLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    z-index: 1000;
    display: none;
}

/*-- Top Button -------------------------------------------*/
#btnTop {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #CC0000; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 8px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 11px;
}

    #btnTop:hover {
        background-color: #555; /* Add a dark-grey background on hover */
    }
