body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
}

.outpaint-handle {
  position: absolute;
  background: rgba(233, 69, 96, 0.7);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.outpaint-handle:hover {
  background: rgba(233, 69, 96, 0.9);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
}

.outpaint-handle.top {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.outpaint-handle.bottom {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.outpaint-handle.left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.outpaint-handle.right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.berry-spinner {
  font-size: 64px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e293b;
}

::-webkit-scrollbar-thumb {
  background: #e94560;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff6b9d;
}