.wizard-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wizard-steps {
    position: relative;
    padding-left: 40px; /* Space for the line and circles */
}

.wizard-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.wizard-step-marker {
    position: relative;
    margin-right: 20px; /* Space between circle and form */
}

.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid #ddd;
}

.active .circle {
    background: #007cba; /* Highlight for active step */
}

.completed .circle {
    background: #4caf50; /* Green for completed steps */
}

.line {
    position: absolute;
    width: 2px;
    background: #ddd;
    top: 20px; /* Space above the line */
    left: 7px; /* Align with the circle's center */
    height: 100%; /* Extend vertically */
}

.wizard-step:last-child .line {
    display: none; /* Hide the line for the last step */
}

.wizard-step-content {
    display: flex;
    flex-direction: column; /* Ensures children stack vertically */
}

.wizard-step-content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #666;
}

.active .wizard-step-content h2 {
    color: #000;
}

.disabled .wizard-step-content h2 {
    color: #ccc;
}

.disabled .wizard-step-content form {
    display: none; /* Hide forms for inactive steps */
}

.completed .wizard-step-content button {
    display: none; /* Hide the button for completed steps */
}

/* Default input width (used by Step 1's activation key) */
input[type="text"] {
    width: 200px; /* Example base width for Step 1 */
}

/* Make the subject input field wider (1.5 times the default) */
input.wide-input {
    width: 300px; /* 1.5 times the base width */
}

.wizard-box {
    background-color: white; /* White background for the box */
    border: 1px solid #ddd; /* Subtle border for the box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for a professional look */
    padding: 20px; /* Padding inside the box */
    max-width: 800px; /* Optional: Limit the width of the wizard box */
    margin: 20px auto; /* Center the box horizontally and add vertical spacing */
}

.completion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.modal-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

#closeModal {
    margin-top: 10px;
}

.info-bubble {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0073aa; /* Blue background */
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease; /* Smooth hover effect */
}

.info-tooltip span {
    font-weight: normal; /* Ensures text inside the span is not bold */
}

.info-icon:hover {
    background-color: #005a8c; /* Darker blue on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

.info-bubble .info-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Center the tooltip horizontally */
    top: 125%; /* Position below the bubble */
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    font-size: 12px;
    color: #333;
    display: none; /* Hidden by default */
    z-index: 1000;
}

.info-bubble:hover .info-tooltip,
.info-bubble:focus .info-tooltip {
    display: block; /* Show tooltip on hover or focus */
}

.info-tooltip a {
    color: #0073aa; /* Link color */
    text-decoration: none;
}

.info-tooltip a:hover {
    text-decoration: underline;
}


#wizard-completion-buttons {
    display: none; /* Hidden by default */
}

li {
    font-weight: normal !important;
}

.button-primary {
    font-weight: bold;
}






