/* General Styles */
.crop-tool-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  color: #666;
}

/* Upload Section */
.upload-section {
  margin: 20px 0;
}

.upload-label {
  display: inline-block;
  padding: 15px 30px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.upload-label:hover {
  background: #0056b3;
}

#crop-upload {
  display: none;
}

/* Aspect Ratio Options */
.aspect-ratio-options {
  margin: 20px 0;
}

.aspect-ratio-options label {
  font-size: 14px;
  margin-right: 10px;
}

.aspect-ratio-options select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* Image Container */
.image-container {
  position: relative;
  margin: 20px 0;
}

#crop-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

#crop-canvas {
  display: none;
  border: 2px dashed #007bff;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

/* Crop Controls */
.crop-controls {
  margin: 20px 0;
}

.crop-controls button {
  padding: 10px 20px;
  margin: 5px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.crop-controls button:hover {
  background: #0056b3;
}

.crop-controls button:disabled {
  background: #ccc;
  cursor: not-allowed;
}