/**
 * ColabyDropify - Estilos mínimos para área de subida de archivo
 */
.colaby-dropify-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 1rem;
  background: #fafafa;
  position: relative;
}

.colaby-dropify-wrapper .colaby-dropify-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.colaby-dropify-message p {
  margin: 0;
  color: #666;
  text-align: center;
  pointer-events: none;
}

.colaby-dropify-preview {
  position: relative;
  text-align: center;
}

.colaby-dropify-preview .colaby-dropify-render {
  display: block;
  margin-bottom: 0.5rem;
}

.colaby-dropify-preview .colaby-dropify-render img {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin: 0 auto;
}

.colaby-dropify-filename {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.colaby-dropify-clear {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.colaby-dropify-clear:hover {
  background: #f5f5f5;
}
