﻿.wizard-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.wizard-step {
    display: none;
}

    .wizard-step.active {
        display: block;
    }

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 0.5rem;
}

    .wizard-buttons button {
        flex: 1;
    }

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.65rem;
    flex-wrap: nowrap; /* extra safety */
}

.wizard-progress span {
    flex: 1 1 0;
    min-width: 0; /* allow shrinking inside flex */
    text-align: center;
    opacity: 0.4;
    white-space: nowrap; /* prevent internal line breaks */
    overflow: hidden; /* hide overflow text */
    text-overflow: ellipsis; /* show ... when too small */
}

.wizard-progress .active {
    font-weight: 600;
    opacity: 1;
}

.field-row {
    display: flex;
    gap: 0.75rem;
}

    .field-row > div {
        flex: 1;
    }

.field-group {
    margin-bottom: 0.75rem;
}

    .field-group label {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .field-group input,
    .field-group select {
        width: 100%;
        padding: 0.45rem 0.5rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        font-size: 0.9rem;
    }
