.employee-comparison {

    .step {
        display: none;
        margin-bottom: 30px;

        &.active {
            display: block;
        }

        h3 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        .step-content {
            padding: 16px;
            border-radius: 16px;
            border: 1px solid var(--Gray-divider, #4C4B50);
            background: var(--Gray-card, #27232E);

            .select2-container--default .select2-selection--single{
                background: transparent;
                border-radius: 8px;
                border: 1px solid var(--Gray-divider, #4C4B50) !important;
            }

            select {
                width: 100%;
                padding: 10px;
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 16px;

                &:disabled {
                    background: #f5f5f5;
                    cursor: not-allowed;
                }
            }
            .step-navigation {
                display: flex;
                justify-content: space-between;
                border-top: 1px solid #4C4B50;
                width: 100%;
                .btn-custom{
                    margin-left: 0;
                }
            }
        }
    }
    .step-1{
        .step-content{
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            & > p{
                width: 100%;
                margin: 0 !important;
            }
            .form-item{
                width: calc(50% - 8px);
            }
            .step-navigation{
                width: 100%;
                justify-content: flex-end;
            }

        }
    }
    .step-2{
        .step-content{
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            & > p{
                width: 100%;
                margin: 0 !important;
            }
            .comparison-type{
                margin: 16px 0;
                gap: 16px;
                display: flex;
                flex-direction: column;
                width: 100%;
                & > label{
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: var(--Gray-white, #FFF);
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 24px; /* 150% */
                    border-radius: 16px;
                    background: var(--Gray-focus, rgba(255, 255, 255, 0.08));
                    padding: 8px 16px;

                    svg{
                        cursor: pointer;
                        &:hover{
                            rect{
                                fill:#A76EC3;
                            }
                        }
                    }


                    &:has(input:checked) {
                        opacity: 0;
                        position: absolute;
                        z-index: -1;
                    }

                    & > input{
                        position: absolute;
                        z-index: 0;
                        opacity: 0;
                    }
                }
            }
            #single-comparison{
                width: 100%;
                display: flex;
                gap: 16px;
            }
            .form-item{
                width: calc(50% - 8px);
            }
        }
    }
    .step-3{
        .step-content{
            border: none;
            background: transparent;
            .step-navigation{
                justify-content: center;
                border: none;
            }

        }
    }
}


.loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

.error {
    color: #dc3545;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dc3545;
    border-radius: 4px;
    background: #fff;
}


