/* ===========================
   WBS Wizard
=========================== */

.wizard-step {
    display: none;
    animation: fadeIn 0.35s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;

        transform: translateX(30px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}

/* Progress */

.wizard-steps {
    display: flex;

    justify-content: space-between;

    padding: 0;

    list-style: none;
}

.wizard-steps li {
    flex: 1;

    position: relative;

    text-align: center;
}

.wizard-steps li::after {
    content: "";

    position: absolute;

    left: 50%;

    top: 25px;

    width: 100%;

    height: 3px;

    background: #dcdcdc;

    z-index: 0;
}

.wizard-steps li:last-child::after {
    display: none;
}

.wizard-steps li span {
    width: 50px;

    height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dee2e6;

    color: #666;

    font-weight: bold;

    position: relative;

    z-index: 1;
}

.wizard-steps li.active span {
    background: #0d6efd;

    color: white;
}

.wizard-steps li.completed span {
    background: #198754;

    color: white;
}

.wizard-steps small {
    display: block;

    margin-top: 10px;

    font-size: 13px;
}

.kategori-card {
    border: 2px solid #e9ecef;

    border-radius: 15px;

    padding: 30px;

    cursor: pointer;

    transition: 0.3s;

    text-align: center;

    height: 100%;
}

.kategori-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kategori-card.active {
    border-color: #0d6efd;

    background: #eef5ff;
}

.kategori-icon {
    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    color: white;

    font-size: 32px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 20px;
}

.kategori-card h4 {
    margin-bottom: 15px;
}

.jenis-card {
    border: 2px solid #dee2e6;

    border-radius: 15px;

    padding: 25px;

    cursor: pointer;

    text-align: center;

    transition: 0.3s;
}

.jenis-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.jenis-card.active {
    border-color: #198754;

    background: #eefcf3;
}
