
.loadingIndicator {
    position: fixed;
    z-index: 1050 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

    .loadingIndicator .loadingSpinner {
        background: #2a323f;
        height: 50px;
        width: 50px;
        position: absolute;
        left: 45%;
        top: 45%;
        display: inline-block;
        color: #ffd500;
        vertical-align: text-bottom;
        border: 0.5em solid currentColor;
        border-right-color: transparent;
        border-radius: 50%;

        -webkit-animation: spinner-border 0.75s linear infinite;
        animation: spinner-border 0.75s linear infinite;
    }

@-webkit-keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.Modal-window-Consio {
    position: absolute;
    top: 9em;
    left: 450px;
    display: flex;
    min-width: 50%;
    background-color: white;
    text-align: center;
    flex-direction: column;
    max-width: 865px !important;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 9999 !important;
}


    .Modal-window-Consio .Modal-window-Consio-Float-right {
        display: flex;
        flex-direction: row-reverse;
    }

        .Modal-window-Consio .Modal-window-Consio-Float-right .close-Btn {
            border-radius: 2px;
            margin-right: 10px;
            margin-top: 10px;
            padding-top: 4px;
            font-weight: bold;
            border: 1px solid #ccc;
            background-color: #FFCC00;
            height: 25px;
            width: 25px;
            cursor: pointer;
        }

            .Modal-window-Consio .Modal-window-Consio-Float-right .close-Btn:hover {
                background-color: red;
                color: white;
            }

.table a {
    cursor: pointer;
}

.main-header {
    border-bottom: 0 !important;
}

.vue-app {
    width: 100%;
    margin: 0 auto;
    font-size: 11px;
    padding: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    font-size: 1.0em;
}

.vue-container {
    padding: 0.5em;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.vue-row {
    padding:10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.vue-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.vue-row-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #067080;
    margin-bottom: 10px;
}
.vue-link {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}


    .vue-formTextBox {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
        .vue-formTextBox:focus {
            color: #495057;
            background-color: #fff;
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
    
        .vue-formTextBox::placeholder {
            font-family: Arial, sans-serif; /* Set Arial font for the placeholder text */
            font-style: italic;
            color: #6c757d;
            opacity: 1;
        }
    
        .vue-formTextBox.dragover {
            border-color: #007bff;
        }
    
        .vue-formTextBox.is-invalid {
            border-color: #dc3545;
            padding-right: calc(1.5em + 0.75rem);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='0 0 12 16'%3e%3cpath fill-rule='evenodd' d='M11.95 11.295l-4.75-4.75a.75.75 0 0 0-1.06 0l-4.75 4.75a.75.75 0 1 0 1.06 1.06l4.22-4.22 4.22 4.22a.75.75 0 1 0 1.06-1.06z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }
    
            .vue-formTextBox.is-invalid:focus {
                border-color: #dc3545;
                box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            }
    
    .vue-formTextBox-error {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: block;
    }


    .vue-formSelect {
        padding: 5px;
        border-radius: 5px;
        border: 1px solid #ccc; 
        min-width: 250px;
        display: block;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
        .vue-formSelect:focus {
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }





/* Base radio button styling */

/* Base radio button styling */
.vue-formRadio {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem; /* Space for custom radio */
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

/* Hide the default radio button */
.vue-formRadio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom radio button */
.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 50%; /* Make it round like a radio button */
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

/* Change appearance when checked */
.vue-formRadio input:checked ~ .radio-checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

/* Inner circle when checked */
.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 0.45rem;
    left: 0.45rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: white;
}

.vue-formRadio input:checked ~ .radio-checkmark:after {
    display: block;
}

/* Focus styling */
.vue-formRadio input:focus ~ .radio-checkmark {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.vue-group-formSelect{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 15px;
    padding-top: 10px;
    font-size: 1.4em;
}

.vue-formCheckbox {
    display: inline-block;
    gap: 5px;
    position: relative;
    padding-left: 2rem; /* This ensures enough space for the checkbox and the label text */
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.vue-formCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.vue-formCheckbox input:checked ~ .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.vue-formCheckbox input:checked ~ .checkmark:after {
    display: block;
}

.vue-formCheckbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.vue-formCheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0.35rem;
    top: 0.1rem;
    width: 0.35rem;
    height: 0.7rem;
    border: solid white;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
}

.vue-formCheckbox input:focus ~ .checkmark {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.vue-formCheckbox.is-invalid .checkmark {
    border-color: #dc3545;
}

.vue-formCheckbox.is-invalid input:focus ~ .checkmark {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.vue-formCheckbox-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}



.file-upload-list {
    
    list-style-type: none; /* Remove default bullet points */
    padding-left: 40px;
    margin-top: 10px;
}

    .file-upload-list li {
        margin:auto;
        padding: 8px;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
        font-size: 1rem;
        color: #495057;
        gap: 10px;
    }

.file-upload-list li i {
    margin-right: 8px;
    color: #007bff;
    cursor: pointer;
}
.file-upload-list span {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.vue-btn-dark-blue{
    background-color: #1f3b71;
    color: white;
    min-width: 120px;
    border-radius: 5px;
    padding: 5px;
    height: 36px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}
        .vue-btn-dark-blue:hover {
            background-color: #0056b3;
        }
        .vue-btn-dark-blue:disabled {
            background-color: grey;
            cursor: not-allowed;
            color: #dcdcdc; /* optional to lighten the text color */
        }


        .table 


.vue-DeleteIcon {
    color: #ac4e4e !important;
    cursor: pointer;
}






@media (max-width: 1368px) {
    .Modal-window-Consio {
        left: 10px;
        right: 10px;
    }
}



















/*----------- Simulation Boostrap  Margin Utilities-------------*/

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}


.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}


.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Margin-Left Utilities */
.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 3rem !important;
}

/* Margin-Right Utilities */
.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 3rem !important;
}


/* Add more for mt-2, mb-2, etc., if needed */

/* Padding Utilities */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

/* Flex Utilities */
.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

/* Justify Content Utilities */
.justify-start {
    justify-content: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.justify-evenly {
    justify-content: space-evenly !important;
}

/* Align Items Utilities */
.align-start {
    align-items: flex-start !important;
}

.align-center {
    align-items: center !important;
}

.align-end {
    align-items: flex-end !important;
}

/* Gap Utilities */
.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}



/* Base list-group container */
.list-group {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 20%;
    margin-right: 15%;
    height: 350px;
    overflow: auto;
}

/* Default list-group-item style */
.list-group-item {
    display: block;
    padding: 10px 15px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.0rem;
    cursor:pointer;
}

    /* Last item should not have a border */
    .list-group-item:last-child {
        border-bottom: none;
    }

/* Actionable list-group-item */
.list-group-item-action:hover,
.list-group-item-action:focus {
    background-color: #f0f0f0;
    color: #000;
}

/* Selected or active list-group-item */
.list-group-item-action.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Custom style for search-result */
.list-group-item.search-result {
    font-style: italic;
    color: #555;
    background-color: #fafafa;
}

    .list-group-item.search-result:hover {
        background-color: #e8e8e8;
    }


