/* image-theme.css - extends the main theme with image-specific variables */
:root {
    /* Inherit main theme variables and add image-specific ones */
    --upload-text-color: #64748b;
    --upload-subtext-color: #94a3b8;
    --upload-background: #f8fafc;
    --upload-hover-background: #f1f5f9;
  }
  
  .dark-mode {
    /* Inherit main dark mode and add image-specific ones */
    --upload-text-color: #e2e8f0;
    --upload-subtext-color: #94a3b8;
    --upload-background: #2D2D2D;
    --upload-hover-background: #1c241f;
  }