.overflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 10px;
  place-items: center;
  background: #f8f9fa;
  padding: 20px;
  border: 2px dashed #6c757d;
}

.overflow-item {
  background: #dc3545;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.long-content {
  width: 120px; /* Wider than grid cell */
}