/* ====================================================================
   Image Cropper - Tool-Specific Styles
   ==================================================================== */

/* Preset Button Icon */
.preset-btn-icon {
  font-size: 20px;
}

/* Muted Subtitle Text (preset sizes, labels) */
.text-muted-sm {
  color: #6b7280;
  font-size: 14px;
}

/* Custom Size Grid */
.custom-size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Cropper Image */
.cropper-image {
  max-width: 100%;
  display: block;
}

/* Button Row */
.button-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Result Section */
.result-preview {
  text-align: center;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 16px;
}

.result-canvas {
  max-width: 100%;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
