﻿.wizard-container {
    /*background-color: #f8f9fa;*/
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    list-style-type: none;
    padding-left: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    position: relative;
}

    .step-indicator .step-circle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid #adb5bd;
        color: #495057;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 0.5rem;
        z-index: 2;
    }

    .step-indicator.active .step-circle {
        background-color: #800000;
        border-color: #800000;
        color: white;
    }

    .step-indicator.completed .step-circle {
        background-color: #198754;
        border-color: #198754;
        color: white;
    }

        .step-indicator.completed .step-circle::after {
            content: '\2713'; /* Checkmark */
            font-size: 16px;
        }


    .step-indicator .step-text {
        font-size: 0.875rem;
        color: #6c757d;
    }

    .step-indicator.active .step-text,
    .step-indicator.completed .step-text {
        color: #212529;
        font-weight: 500;
    }

    /* Connector line (optional) */
    .step-indicator:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 15px; /* Align with center of circle */
        left: 50%;
        height: 1px;
        width: calc(100% - 4px); /* Adjust based on circle width */
        background-color: #adb5bd;
        z-index: 1;
        transform: translateX(15px); /* Start after the circle */
    }

    .step-indicator.completed:not(:last-child)::before {
        background-color: #198754;
    }


.wizard-pane {
    display: none; /* Hidden by default */
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
}

    .wizard-pane.active {
        display: block; /* Shown when active */
    }

.wizard-navigation {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}



.form-check-label{
    font-size: 12px;
}
/********************** Auto Complete ***********************************************/
.autocomplete-container {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    border: 1px solid #ccc;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    /* Full width of its container */
    width: 100%;
    z-index: 1000;
    display: none;
}

.autocomplete-suggestion {
    padding: 8px;
    cursor: pointer;
}

    .autocomplete-suggestion:hover {
        background-color: #f0f0f0;
    }

.highlight {
    background-color: yellow;
}

/* --- NEW: Styles for the Tag Input Field --- */

/* This is the main container that looks like an input */
#tag-container {
    /* Use flexbox to align tags and the input field */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    height: 45px !important;
    /* Make its height adjust to content */
    height: auto;
    min-height: calc(1.5em + .75rem + 2px); /* Match bootstrap's default input height */
}

/* This is the actual input field inside the container */
.badge {
    height: 30px;
    font-size: 12px;
    background-color: #800000 !important;
}

#txtClass {
    border: 0px;
    outline: 0px;
}
