/* style.css */
.captcha-container {
    position: relative;
    width: 300px;
    height: 50px;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #FFF;
    border-radius: var(--bs-border-radius);
    border-color: rgba(0, 0, 0, 0.20) !important;
}

.target-area {
    position: absolute;
    width: 100px; /* Larghezza maggiore per evidenziare l'area target */
    height: 50px; /* Altezza totale del container */
    background-color: #BFBFBF;
    left: 150px; /* Centrato orizzontalmente */
    top: 0px;
}

.draggable {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('https://wsgroupsrl.it/immagini-prodotti/VB-BAR-25-50g-CIOCCOLATO-BIANCO-E-LIMONE.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: ew-resize; /* Cursor icon indicante movimento est-ovest */
}

.draggable {
    touch-action: none; /* Impedisce il pinch-zoom e lo scrolling */
    user-select: none; /* Impedisce la selezione del testo */
    cursor: ew-resize;
}