/* Smash Clone Uploader Styles */

#smash-clone-uploader {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  border: 2px dashed #bbb;
  border-radius: 12px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease;
}

#smash-clone-uploader.dragover {
  border-color: #0073aa;
  background: #f0f8ff;
}

#smash-drop {
  padding: 40px 20px;
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

#smash-progress {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

#smash-result {
  margin-top: 20px;
  font-size: 15px;
  color: green;
  word-break: break-all;
}

#smash-result a {
  color: #0073aa;
  text-decoration: underline;
}

#smash-result a:hover {
  color: #005177;
}
