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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.e-multiselect .e-control.e-input,
.e-multiselect.e-input-group,
.e-input-group.e-control-wrapper {
    border: 1px solid #dee2e6 !important;
    border-radius: 50px;
    height: 40px;
    align-items: center;
    font-size:200px;

}
    .e-input-group.e-control-wrapper.e-input-focus {
        border-color: #dee2e6 !important;
        box-shadow: none !important;
    }
    .e-input-group.e-control-wrapper:hover {
        border-color: #dee2e6 !important;
    }

/* Logo Styles */
.nav-logo {
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav {
    background-color: #e5f0ff;
    border-radius: 12px;
}

.nav-pills .nav-link {
    border-radius: 8px;
    margin-right: 10px;
    padding: 8px 16px;
    color: #6c757d;
    background-color: transparent;
    transition: 0.3s;
}

    .nav-pills .nav-link.active {
        background-color: #0d6efd; /*1dbb99*/
        color: #ffffff;
    }

        .nav-pills .nav-link.active:hover {
            background-color: #0457d1;
            color: #ffffff;
        }

    .nav-pills .nav-link:hover {
        background-color: #0d6efd;
        color: #ffffff;
    }

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    outline: none;
}

/* Base style */
#tempRange {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    outline: none;
    background: linear-gradient(to right, #0d3b66 0%, #0d3b66 50%, #a8dadc 50%, #a8dadc 100%);
}

    /* Thumb (circle) */
    #tempRange::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        background: #0d3b66;
        border-radius: 50%;
        cursor: pointer;
    }

    #tempRange::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: #0d3b66;
        border-radius: 50%;
        cursor: pointer;
    }

th, td {
    padding-left: 18px !important;
    padding-right: 18px !important;
}