.image-cropper-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.image-cropper-wrapper h2 {
  margin-bottom: 1rem;
  color: #333;
}

#imageInput {
  display: block;
  margin: 0 auto 1rem;
  padding: 0.5rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.canvas-container {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}

#imageCanvas {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  cursor: crosshair;
  cursor: url('https://cdn-icons-png.flaticon.com/512/32/32384.png') 16 16, crosshair;
}
#cropArea {
  position: absolute;
  border: 2px dashed #4f46e5;
  background-color: rgba(99, 102, 241, 0.15);
  display: none;
  cursor: crosshair;
  border-radius: 6px;
}

#croppedResult {
  margin-top: 2rem;
  text-align: center;
}

#croppedResult img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background-color: #4f46e5;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #3730a3;
}
