#wizard-process #wizard_header #myTab {
    position: relative;
    margin: 15px auto;
    margin-bottom: 0;
    border-bottom-color: #e0e0e0;
    border: 0;
}

#wizard-process #wizard_header #myTab .nav-link {
    border: 0.0rem solid var(--secondary_color);
    border-radius: 1cqb;
}

#wizard-process #wizard_header #myTab .nav-link i {
    color: var(--secondary_color);
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Icona di avvertimento */
.warning-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

#myTabContent {
    min-height: 56vh;
}

/* Button wizard */
#wizard-process .btn-content {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #ffffff;
    background: var(--secondary_color);
    transition: 1s;
    border-radius: 0.2rem;
    box-shadow: 0 0 0.2em 0 var(--secondary_color);
    padding: 0.4rem;
    border: 0px;
}

#wizard-process .btn-content:hover,
#wizard-process .btn-content:focus {
    transition: 0.5s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 white;
    color: white;
}

/* Icon animation */
#wizard-process .icon-arrow {
    font-size: 20px;
    margin: 0 10px;
    transition: transform 0.5s ease;
}

#wizard-process .btn-content:hover .icon-arrow {
    transform: translateX(10px);
}

#wizard-process .btn-content.reverse:hover .icon-arrow {
    transform: translateX(-10px);
}

#wizard-process .btn-content:focus {
    color: #ffffff;
    outline: none;
}

@keyframes btn-content {
    0% {
        outline: 0.2em solid white;
        outline-offset: 0;
    }
}
