/* /Components/Stepper.razor.rz.scp.css */
.stepper-wrapper[b-43rnbwqq6c] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.stepper-item[b-43rnbwqq6c] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

    /* linea collegamento */
    .stepper-item[b-43rnbwqq6c]::before {
        content: "";
        position: absolute;
        top: calc(var(--circle-size) / 2); /* centrata verticalmente */
        left: -50%;
        width: calc(100% - var(--circle-size) - var(--spacing-extra));
        margin-left: calc((var(--circle-size) / 2) + (var(--spacing-extra) / 2));
        height: var(--line-thickness);
        background-color: #d3d3d3;
        z-index: 0;
    }

    .stepper-item:first-child[b-43rnbwqq6c]::before {
        content: none;
    }

    .stepper-item.active[b-43rnbwqq6c]::before {
        background-image: linear-gradient(to right, #FFB74D 70%, #2196F3);
    }

    /* linea verde per step completati */
    .stepper-item.completed[b-43rnbwqq6c]::before {
        background-color: #FFB74D;
    }

/* cerchio numerato */
.step-counter[b-43rnbwqq6c] {
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3d3d3;
    color: #fff;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

/* step attivo */
.stepper-item.active .step-counter[b-43rnbwqq6c] {
    background: #2196F3;
    box-shadow: 0 0 8px rgba(25, 118, 210, 0.6);
}

.stepper-item.active .step-name[b-43rnbwqq6c] {
    font-weight: bold;
    color: #2196F3;
}

/* step completato */
.stepper-item.completed .step-counter[b-43rnbwqq6c] {
    background: #FFB74D;
}

/* nome step */
.step-name[b-43rnbwqq6c] {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-y7gytpdtd9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-y7gytpdtd9] {
    flex: 1;
}

.sidebar[b-y7gytpdtd9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y7gytpdtd9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y7gytpdtd9]  a, .top-row .btn-link[b-y7gytpdtd9] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-y7gytpdtd9] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-y7gytpdtd9] {
        display: none;
    }

    .top-row.auth[b-y7gytpdtd9] {
        justify-content: space-between;
    }

    .top-row a[b-y7gytpdtd9], .top-row .btn-link[b-y7gytpdtd9] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y7gytpdtd9] {
        flex-direction: row;
    }

    .sidebar[b-y7gytpdtd9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y7gytpdtd9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-y7gytpdtd9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
