.example-container {
  margin: 20px 0;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.example-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.resizable-demo {
  width: 200px;
  height: 100px;
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #007acc;
  border-radius: 5px;
  background-color: #e6f3ff;
  font-family: Arial, sans-serif;
  overflow: auto;
}

.resize-both {
  resize: both;
}

.resize-horizontal {
  resize: horizontal;
}

.resize-vertical {
  resize: vertical;
}

.resize-none {
  resize: none;
}

.textarea-demo {
  width: 300px;
  height: 120px;
  padding: 10px;
  border: 2px solid #28a745;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.custom-resize {
  resize: both;
  min-width: 200px;
  min-height: 100px;
  max-width: 500px;
  max-height: 300px;
}