.neovision-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 50px;
    background-color: #e5e7eb;
    border-radius: 25px;
    margin: 20px 0;
    user-select: none;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.neovision-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.neovision-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #10b981; /* Tailwind green-500 */
    width: 0; /* Starts at 0 width */
    border-radius: 25px;
    transition: width 0.1s linear; /* Smooth drag but snappy reset if needed */
}

.neovision-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 46px; /* 50px height - 4px padding */
    height: 46px;
    background-color: white;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
}

.neovision-handle:active {
    cursor: grabbing;
}

.neovision-handle svg {
    width: 20px;
    height: 20px;
}

/* Verified State */
.neovision-container.verified .neovision-text {
    color: white;
    content: "Verificado";
}

.neovision-container.verified .neovision-handle {
    cursor: default;
    background-color: white;
    color: #10b981;
}
