.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    padding: 10px;
    resize: horizontal;
    overflow: auto;
    min-width: 200px; 
    cursor: e-resize;
  }
  
  .item {
    height: 100px;
    background: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  