#containerBlocTrie {
    user-select: none;
}

.square {
    position: absolute;
    bottom: 0; /* Position en bas */
    right: 0; /* Position à droite */
}
#square1 {
    max-width: 100%;
    max-height: 100%;
    width: 70px;
    height: 200px;
    background-color: rgb(0, 0, 0);
}
#square2 {
    max-width: 100%;
    max-height: 100%;
    width: 20px;
    height: 100px;
    background-color: rgb(255, 255, 255);
}

.handle {
    border: solid 2px;
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    left: -4px;
    cursor: nwse-resize; /* Curseur pour indiquer que la poignée est redimensionnable */
}
#handle1 {
    background-color: rgb(255, 255, 255);
}
#handle2 {
    border-color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}
