/* static/adminlte/dist/css/stepper.css */
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-bottom: 20px;
    overflow-x: auto;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    min-width: 120px;
}
.stepper-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}
.stepper-item.completed:not(:last-child)::after {
    background-color: #28a745;
}
.step-counter {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.stepper-item.completed .step-counter {
    background-color: #28a745;
    color: #fff;
}
.stepper-item.active .step-counter {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}
.step-name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}
.step-details {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #6c757d;
    min-height: 60px;
}
.step-details span {
    display: block;
}
.step-details .badge {
    font-size: 0.7rem;
}
/* Dark Mode */
.dark-mode .stepper-item:not(:last-child)::after {
    background-color: #454d55;
}
.dark-mode .stepper-item.completed:not(:last-child)::after {
    background-color: #28a745;
}
.dark-mode .step-counter {
    background-color: #343a40;
    color: #adb5bd;
}
.dark-mode .stepper-item.completed .step-counter {
    background-color: #28a745;
    color: #fff;
}
.dark-mode .stepper-item.active .step-counter {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.8);
}
.dark-mode .step-details {
    color: #adb5bd;
}
