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

.container.body-container {
    padding-top: 5em;
}
.container-fluid.body-container {
    padding-top: 5em;
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tab-container {
    width: 100%;
}

.tabs {
    list-style-type: none;
    display: flex;
    border:none;
}

.tab-link {
    padding: 10px 20px;
    cursor: pointer;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
    color: rgba(255,255,255,0.55);
    margin-right: 1px;
}

    .tab-link.active {
        color:rgb(0,255,0);
        border-top: 2px solid #007BFF;
        font-weight: bold;
    }

.tab-content {
    display: none;
    padding: 20px;
    border: none;
}

@media (max-width: 992px) {
    .tab-content{
        padding:0;
    }
}

    .tab-content.active {
        display: block;
    }

    .spinner-border.saving {
        height: 1em;
        width: 1em;
    }


    .verticalZoomSlider {
        -webkit-appearance: slider-vertical;
        width: 20px;
        position: absolute;
        top: -150px;
        z-index: 10000;
        height: 150px;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

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

    .input-validation-error,
    input.input-validation-error,
    select.input-validation-error,
    textarea.input-validation-error {
        border-color: #dc3545; /* Bootstrap's red */
    }

    form.gray input,
    form.gray select,
    form.gray textarea {
        background-color: #e0e0e0; /* light gray, adjust as needed */
    }

    .progress {
        height: 40px;
        width: 90%;
        max-width: 400px;
        position: relative;
        font-weight: bold;
        background: black;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        --bs-progress-border-radius: 0;
        font-size: 1em;
    }

    .progress-bar {
        background-color: rgb(0,255,0);
        color: black;
    }