html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

* {
    margin: 0;
    padding: 0;
}

.loader, .loaderMapped {
    z-index: 1051;
    display: none;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.loading, .loadingMapped {
    border: 2px solid #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-top-color: #1ecd97;
    border-left-color: #1ecd97;
    animation: spin 1s infinite ease-in;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-primary {
    color: #fff;
    background-color: #00858D;
    border: 0;
}

.btn-primary:hover {
    color: #fff;
    background-color: #33B0B8;
    border: none;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #D3D3D3;
    border: 0;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #009CA6;
    /*border-color: #005E64;*/
}

.app-logo > img {
    height: 50px;
    margin-top: 0px;
    margin-left: 20px;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    /*box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);*/
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: Roboto;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-fullscreen {
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.modal-content {
    height: 100%;
}

/* Initial state for the icon (arrow pointing right) */
.accordion-toggle i {
    transition: transform 0.3s; /* Smooth transition for the arrow rotation */
}

/* Rotate the arrow icon when the collapse is open */
.collapse.show + tr .accordion-toggle i {
    transform: rotate(90deg); /* Rotate the arrow to point down */
}

/* Style for larger checkboxes */
.row-checkbox {
    transform: scale(1.2); /* Adjust the scale factor as needed */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
}

/* Custom Checkbox Style */
input[type="checkbox"].row-checkbox:checked,
input[type="checkbox"]#selectAll:checked {
    accent-color: rgb(0, 133, 141); /* Change the checkbox tick color */
}

.menu-header {
    font-size: 15px;
    font-weight: 500;
}

.app-logo {
    height: 42px;
    margin-top: 0px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.footerText {
    color: white;
    text-decoration: none;
}

.footerText:hover {
    color: #33B0B8;
}

.labelFormat {
    font-size: 15px;
    font-weight: 500;
}

.dashboard-panel {
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard-panel-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.dashboard-panel-header h1 {
    color: #00858D;
    font-size: 24px;
    font-weight: 600;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-item {
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.nav-dropdown-item:hover {
    background-color: #f1f1f1;
    color: #009CA6;
    text-decoration: none;
}
