.draggable {
    position: absolute;
    top: 120px;
    float: left;
    left: 20px;
    width: 200px;
    /*max-height: 300px;  Define a altura máxima */
    overflow-y: auto; /* Exibe uma barra de rolagem quando necessário */
    background: white;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: move;
    z-index: 1000;
    display: block;
  }

  .resizable {
    position: relative;
  }

  .resize-handle {
    width: 10px; /* Width of the resize handle */
    height: 10px; /* Height of the resize handle */
    background: #3388ff; /* Color of the resize handle */
    position: absolute;
    bottom: 0; /* Position it at the bottom right corner */
    right: 0; /* Position it at the bottom right corner */
    cursor: nwse-resize; /* Cursor style for resize */
  }

  .flex-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Espaçamento entre os itens */
  }

  #texto{
    padding: 10px;
  }