/* app/assets/stylesheets/derived_images.scss */
/* line 4, app/assets/stylesheets/derived_images.scss */
.derived-images-index .header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* line 10, app/assets/stylesheets/derived_images.scss */
.derived-images-index .header-section h1 {
  margin: 0;
  color: #333;
}

/* line 16, app/assets/stylesheets/derived_images.scss */
.derived-images-index .status-summary {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

/* line 22, app/assets/stylesheets/derived_images.scss */
.derived-images-index .status-summary .status-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 29, app/assets/stylesheets/derived_images.scss */
.derived-images-index .transformation-group {
  margin-bottom: 3rem;
}

/* line 32, app/assets/stylesheets/derived_images.scss */
.derived-images-index .transformation-group h3 {
  color: #555;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* line 40, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-images-grid {
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 2rem;
}

/* line 47, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-grid-item {
  margin-bottom: 1.5rem;
}

/* line 51, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 58, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Default height */
  height: 200px;
  /* Special handling for different image types */
}

/* line 68, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container.ruler-container {
  height: auto;
  min-height: 150px;
  max-height: 250px;
  padding: 1rem;
}

/* line 75, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container.repeat-check-container {
  height: 250px;
  /* Larger for repeat-check */
}

/* line 79, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .derived-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Ruler images - show more content */
  /* Repeat-check images - ensure they fill more space */
}

/* line 85, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .derived-image.ruler-image {
  object-fit: contain;
  width: auto;
  height: auto;
}

/* line 92, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .derived-image.repeat-check-image {
  object-fit: contain;
  max-height: 100%;
}

/* line 98, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .image-placeholder {
  text-align: center;
  color: #6c757d;
}

/* line 102, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .image-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* line 108, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .image-placeholder.status-pending i {
  color: #ffc107;
}

/* line 109, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .image-placeholder.status-processing i {
  color: #007bff;
  animation: spin 1s linear infinite;
}

/* line 113, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-container .image-placeholder.status-failed i {
  color: #dc3545;
}

/* line 117, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-info {
  padding: 1rem;
}

/* line 120, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-info .status {
  margin-bottom: 0.5rem;
}

/* line 124, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-info .dimensions, .derived-images-index .derived-image-card .image-info .generated-at {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

/* line 130, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-info .error-message {
  font-size: 0.875rem;
  color: #dc3545;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  background: #f8d7da;
  border-radius: 0.25rem;
}

/* line 139, app/assets/stylesheets/derived_images.scss */
.derived-images-index .derived-image-card .image-info .actions {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* line 148, app/assets/stylesheets/derived_images.scss */
.derived-images-index .empty-state {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

/* line 153, app/assets/stylesheets/derived_images.scss */
.derived-images-index .empty-state h3 {
  margin-bottom: 1rem;
}

/* line 160, app/assets/stylesheets/derived_images.scss */
.derived-image-show .header-section {
  margin-bottom: 2rem;
}

/* line 163, app/assets/stylesheets/derived_images.scss */
.derived-image-show .header-section h1 {
  margin: 0 0 1rem 0;
  color: #333;
}

/* line 169, app/assets/stylesheets/derived_images.scss */
.derived-image-show .content-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

@media (max-width: 768px) {
  /* line 169, app/assets/stylesheets/derived_images.scss */
  .derived-image-show .content-section {
    grid-template-columns: 1fr;
  }
}

/* line 180, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .main-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* line 187, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  color: #6c757d;
}

/* line 195, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* line 201, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder h3 {
  margin-bottom: 0.5rem;
  color: #495057;
}

/* line 206, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder.status-pending i {
  color: #ffc107;
}

/* line 207, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder.status-processing i {
  color: #007bff;
  animation: spin 2s linear infinite;
}

/* line 211, app/assets/stylesheets/derived_images.scss */
.derived-image-show .image-display .image-placeholder.status-failed i {
  color: #dc3545;
}

/* line 216, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .info-panel, .derived-image-show .sidebar .download-panel {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* line 222, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .info-panel h3, .derived-image-show .sidebar .download-panel h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #495057;
}

/* line 229, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

/* line 235, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .detail-row label {
  font-weight: 600;
  color: #495057;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 242, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .detail-row span {
  text-align: right;
  word-break: break-word;
}

/* line 247, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .detail-row.error {
  flex-direction: column;
  align-items: stretch;
}

/* line 251, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .detail-row.error span {
  background: #f8d7da;
  color: #721c24;
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-top: 0.25rem;
  text-align: left;
}

/* line 263, app/assets/stylesheets/derived_images.scss */
.derived-image-show .sidebar .params-display .param {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

/* line 272, app/assets/stylesheets/derived_images.scss */
.derived-image-new .header-section, .bulk-generate .header-section {
  margin-bottom: 2rem;
}

/* line 275, app/assets/stylesheets/derived_images.scss */
.derived-image-new .header-section h1, .bulk-generate .header-section h1 {
  color: #333;
  margin-bottom: 0.5rem;
}

/* line 280, app/assets/stylesheets/derived_images.scss */
.derived-image-new .header-section p, .bulk-generate .header-section p {
  color: #6c757d;
  margin: 0;
}

/* line 286, app/assets/stylesheets/derived_images.scss */
.derived-image-new .form-section, .bulk-generate .form-section {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* line 292, app/assets/stylesheets/derived_images.scss */
.derived-image-new .form-section h3, .bulk-generate .form-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #495057;
}

/* line 299, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field, .bulk-generate .field {
  margin-bottom: 1rem;
}

/* line 302, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field .form-label, .bulk-generate .field .form-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

/* line 309, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field .form-select, .derived-image-new .field .form-control, .bulk-generate .field .form-select, .bulk-generate .field .form-control {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-size: 1rem;
}

/* line 316, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field .form-select:focus, .derived-image-new .field .form-control:focus, .bulk-generate .field .form-select:focus, .bulk-generate .field .form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 323, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field .form-checkbox, .bulk-generate .field .form-checkbox {
  margin-right: 0.5rem;
}

/* line 327, app/assets/stylesheets/derived_images.scss */
.derived-image-new .field .form-text, .bulk-generate .field .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* line 335, app/assets/stylesheets/derived_images.scss */
.derived-image-new .transformation-params-section .config-description, .bulk-generate .transformation-params-section .config-description {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* line 342, app/assets/stylesheets/derived_images.scss */
.derived-image-new .form-actions, .bulk-generate .form-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

/* line 350, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: white;
}

/* line 357, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option.existing {
  background: #f8f9fa;
  opacity: 0.7;
}

/* line 362, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option .checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* line 367, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option .checkbox-wrapper input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* line 371, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option .checkbox-wrapper .checkbox-label {
  font-weight: 600;
  color: #495057;
  margin: 0;
}

/* line 378, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option .transformation-description {
  color: #6c757d;
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

/* line 384, app/assets/stylesheets/derived_images.scss */
.bulk-generate .transformation-option .existing-badge {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Badge styles */
/* line 396, app/assets/stylesheets/derived_images.scss */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

/* line 407, app/assets/stylesheets/derived_images.scss */
.badge.badge-pending {
  color: #212529;
  background-color: #ffc107;
}

/* line 412, app/assets/stylesheets/derived_images.scss */
.badge.badge-processing {
  color: white;
  background-color: #007bff;
}

/* line 417, app/assets/stylesheets/derived_images.scss */
.badge.badge-completed {
  color: white;
  background-color: #28a745;
}

/* line 422, app/assets/stylesheets/derived_images.scss */
.badge.badge-failed {
  color: white;
  background-color: #dc3545;
}

/* Alert styles */
/* line 429, app/assets/stylesheets/derived_images.scss */
.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 435, app/assets/stylesheets/derived_images.scss */
.alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* line 441, app/assets/stylesheets/derived_images.scss */
.alert h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 446, app/assets/stylesheets/derived_images.scss */
.alert ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

/* Animation for spinning icons */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  /* line 460, app/assets/stylesheets/derived_images.scss */
  .derived-images-grid {
    grid-template-columns: 1fr;
  }
  /* line 464, app/assets/stylesheets/derived_images.scss */
  .header-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  /* line 469, app/assets/stylesheets/derived_images.scss */
  .header-section .actions {
    justify-content: center;
  }
  /* line 474, app/assets/stylesheets/derived_images.scss */
  .content-section {
    grid-template-columns: 1fr;
  }
  /* line 478, app/assets/stylesheets/derived_images.scss */
  .form-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   ENHANCED DERIVED IMAGE SHOW VIEW STYLES
   ========================================================================== */
/* Special layout for ruler views */
/* line 487, app/assets/stylesheets/derived_images.scss */
.derived-image-show.ruler-view .content-section {
  display: block !important;
  max-width: none !important;
}

/* line 492, app/assets/stylesheets/derived_images.scss */
.derived-image-show.ruler-view .main-content {
  width: 100%;
  max-width: none;
}

/* Full-width ruler display */
/* line 498, app/assets/stylesheets/derived_images.scss */
.derived-image-show.ruler-view .image-display {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f8f9fa;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Ruler instructions */
/* line 507, app/assets/stylesheets/derived_images.scss */
.ruler-instructions {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* line 519, app/assets/stylesheets/derived_images.scss */
.ruler-instructions h4 {
  margin: 0 0 0.5rem 0;
  color: #1976d2;
  font-size: 1.1rem;
}

/* line 525, app/assets/stylesheets/derived_images.scss */
.ruler-instructions p {
  margin: 0;
  color: #1565c0;
  font-size: 0.9rem;
}

/* Ruler scroll container */
/* line 532, app/assets/stylesheets/derived_images.scss */
.ruler-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
  cursor: zoom-in;
  transition: all 0.3s ease;
}

/* line 545, app/assets/stylesheets/derived_images.scss */
.ruler-scroll-container.ruler-zoomed {
  cursor: zoom-out;
  overflow: auto;
}

/* Ruler image styling */
/* line 551, app/assets/stylesheets/derived_images.scss */
.ruler-image {
  height: 400px;
  width: auto !important;
  max-width: none !important;
  object-fit: none !important;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: white;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  cursor: inherit;
}

/* Repeat-check container */
/* line 566, app/assets/stylesheets/derived_images.scss */
.rptchk {
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* line 574, app/assets/stylesheets/derived_images.scss */
.rptchk img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* line 581, app/assets/stylesheets/derived_images.scss */
.rptchk svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* line 592, app/assets/stylesheets/derived_images.scss */
.rptchk:hover svg {
  opacity: 1;
}

/* Repeat-check instructions */
/* line 597, app/assets/stylesheets/derived_images.scss */
.repeat-check-instructions {
  margin-top: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}

/* line 604, app/assets/stylesheets/derived_images.scss */
.instruction-box {
  max-width: 600px;
  margin: 0 auto;
}

/* line 609, app/assets/stylesheets/derived_images.scss */
.instruction-box h4 {
  margin: 0 0 1rem 0;
  color: #495057;
  text-align: center;
}

/* line 615, app/assets/stylesheets/derived_images.scss */
.how-it-works {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  border-left: 4px solid #17a2b8;
}

/* line 623, app/assets/stylesheets/derived_images.scss */
.seamless-status {
  text-align: center;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 1rem;
}

/* line 631, app/assets/stylesheets/derived_images.scss */
.seamless-status.positive {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* line 637, app/assets/stylesheets/derived_images.scss */
.seamless-status.neutral {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Standard image container */
/* line 644, app/assets/stylesheets/derived_images.scss */
.standard-image-container {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* line 652, app/assets/stylesheets/derived_images.scss */
.standard-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 8px;
}

/* Image details section */
/* line 662, app/assets/stylesheets/derived_images.scss */
.image-details-section {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* line 669, app/assets/stylesheets/derived_images.scss */
.details-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

/* line 677, app/assets/stylesheets/derived_images.scss */
.details-card h3 {
  margin: 0 0 1.5rem 0;
  color: #212529;
  font-size: 1.3rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
}

/* Image modal styles */
/* line 686, app/assets/stylesheets/derived_images.scss */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
}

/* line 698, app/assets/stylesheets/derived_images.scss */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 710, app/assets/stylesheets/derived_images.scss */
.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* line 720, app/assets/stylesheets/derived_images.scss */
.modal-close:hover {
  color: #bbb;
}

/* line 724, app/assets/stylesheets/derived_images.scss */
.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  /* line 737, app/assets/stylesheets/derived_images.scss */
  .derived-image-show.ruler-view .image-display {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem;
  }
  /* line 743, app/assets/stylesheets/derived_images.scss */
  .ruler-scroll-container {
    padding: 0.5rem;
  }
  /* line 747, app/assets/stylesheets/derived_images.scss */
  .ruler-image {
    height: 250px;
  }
  /* line 751, app/assets/stylesheets/derived_images.scss */
  .ruler-instructions {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 0.75rem;
  }
  /* line 757, app/assets/stylesheets/derived_images.scss */
  .rptchk {
    width: 100%;
  }
  /* line 761, app/assets/stylesheets/derived_images.scss */
  .repeat-check-instructions {
    margin-top: 1rem;
    padding: 1rem;
  }
  /* line 769, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-images-grid {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
  }
  /* line 776, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-grid-item {
    margin-bottom: 1.5rem;
  }
  /* line 781, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  /* line 787, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
  }
  /* line 793, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-card .image-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  /* line 798, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-card .image-info .actions {
    margin-top: auto;
  }
  /* line 802, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .derived-image-card .image-info .actions .btn {
    flex: 1;
    min-width: 80px;
    text-align: center;
  }
  /* line 813, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .status-summary .status-badges .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.7em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  /* line 823, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .transformation-group h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  /* line 832, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .badge-processing,
.derived-images-index .status-processing {
    animation: pulse-processing 2s infinite;
  }
}

@media (max-width: 768px) and (max-width: 576px) {
  /* line 840, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .header-section .actions {
    flex-direction: column;
    width: 100%;
  }
  /* line 844, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .header-section .actions .btn {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  /* line 852, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .image-container {
    min-height: 180px !important;
    max-height: 200px !important;
  }
}

@media (max-width: 768px) {
  /* line 859, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .empty-state .quick-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 300px;
    margin: 0 auto;
  }
  /* line 866, app/assets/stylesheets/derived_images.scss */
  .derived-images-index .empty-state .quick-actions .btn {
    width: 100%;
  }
  @keyframes pulse-processing {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.02);
    }
  }
}
