.tj-drag-drop-area {
  border: 2px dashed var(--tj-color-theme-primary);
  background: rgba(110, 146, 30, 0.02);
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tj-drag-drop-area:hover, .tj-drag-drop-area.dragover {
  background: rgba(110, 146, 30, 0.08);
  border-color: var(--tj-color-theme-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(110, 146, 30, 0.1);
}

.tj-drag-drop-area.dragover {
  border-style: solid;
}

.tj-drag-drop-area .upload-icon {
  font-size: 45px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.tj-drag-drop-area:hover .upload-icon, .tj-drag-drop-area.dragover .upload-icon {
  transform: scale(1.1);
}

.tj-drag-drop-area .drag-drop-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--tj-color-heading-primary);
}

.tj-drag-drop-area .drag-drop-text {
  font-size: 14px;
  color: var(--tj-color-text-body-3);
  margin-bottom: 12px;
}

.tj-drag-drop-area .browse-link {
  color: var(--tj-color-theme-primary);
  font-weight: 600;
  text-decoration: underline;
}

.tj-drag-drop-area .drag-drop-info {
  font-size: 12px;
  color: var(--tj-color-text-body-2);
}

/* Preview Styles */
.tj-image-preview {
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease;
}

.preview-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.preview-thumbnail {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  border: 1px solid var(--tj-color-border-1);
  flex-shrink: 0;
}

.preview-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.preview-details .filename {
  font-size: 14px;
  font-weight: 600;
  color: var(--tj-color-heading-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.preview-details .filesize {
  font-size: 12px;
  color: var(--tj-color-text-body-3);
}

.remove-btn {
  background: transparent;
  border: none;
  color: var(--tj-color-text-body-3);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
