@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@theme {
  --color-[#40c1c7]: #40c1c7; /* rgb */
  --color-[#40c1c7]-dark: #2fa8ad;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
}

.react-resizable {
  position: relative;
  background-clip: padding-box;
}

.react-resizable-handle {
  position: absolute;
  right: -5px;
  bottom: 0;
  z-index: 1;
  width: 10px;
  height: 100%;
  cursor: col-resize;
}

.react-resizable-handle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
