/* General styling */
.multi-step-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.multi-step-widget-container {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.multi-step-widget-container.hidden {
    display: none;
}

.multi-step-widget-item {
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    height: 4em;
    width: 4em;
}

.multi-step-widget-item.completed {
    background-color: #003366; /* Past steps in pink */
    color: white;
}

.multi-step-widget-item.active {
    background-color: #FFD045; /* Active step in dark blue */
    color: white;
}

.multi-step-widget-item.to-come {
    background-color: #ccc; /* Future steps in light gray */
    color: black;
}

.multi-step-widget-item .multi-step-widget-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.multi-step-widget-number {
    font-size: 24px;
}

.multi-step-widget-title {
    font-size: 14px;
}

.multi-step-widget-connector {
    height: 5px;
    width: 40px;
    background-color: #003366;
}

.multi-step-form-container {
    padding: 1em;
}

.multi-step-form-content {
    gap: 1.5em;
}
