html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card-menu {
    width: 23rem;
}

.flex-panel {
    display: flex;
    min-height: 0;
}

.no-bullets ul {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.min-height-0 {
    min-height: 0;
}

div.empty {
    min-height: 2.4em;
}
.k-grid-flex {
    display:flex;
    flex-direction: column;
    flex: 1;
    min-height: 300px;
}

.k-grid-selectable-row .k-grid-content tr {
    cursor: pointer;
}

.login-background {
    background-image: url('../images/qbo-background.jpg');
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment:fixed;
   
}

.k-window-content{
    display: flex !important;
    flex-direction:column;
    flex:1;
    min-height:0;
}

.k-window-content iframe{
    display: flex;
    flex-direction:column;
    flex: 1;
}

.flex-dialog {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding-top: 2px;
}

.dialog-content{
    display:flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.k-window-titlebar {
    background-color: #f8f9fa;
}

/* Required for ComboBox loading animation.  Changes height of control if not resized to smaller height */
.k-i-loading {
    min-height: 5px !important;
    max-height: 5px !important;
}

.legend-small{
    font-size: 1.1rem;
}

ol.custom-list {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

    ol.custom-list li {
        counter-increment: list-counter;
        margin-bottom: 10px;
        position: relative;
        padding-left: 2em;
    }

        ol.custom-list li::before {
            content: counter(list-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 1.5em;
            height: 1.5em;
            border-radius: 50%;
            background-color: var(--bs-success);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

