/* Shared document upload zone for Ready-Made Prompt topic pages */
.sac-upload-mount { margin: 14px 0 10px; }
.upload-zone-wrapper { margin: 0; }
.upload-privacy-warning {
  border-radius: 10px; padding: 14px 16px; margin-bottom: 12px;
  font-size: 15px; line-height: 1.55; color: #1A2E35;
}
.upload-privacy-warning.upw-critical {
  background: #FFF0EE; border: 1px solid #F5B7B1;
}
.upload-privacy-warning.upw-standard {
  background: #FFF8E7; border: 1px solid #E9C46A;
}
.upload-privacy-warning.upw-minimal {
  background: #E8F5F7; border: 1px solid #94d0d6; font-size: 14px;
}
.upload-privacy-warning .upw-title { font-weight: 700; margin-bottom: 8px; }
.upload-privacy-warning ul { margin: 6px 0 8px 18px; padding: 0; }
.upload-privacy-warning ul li { margin-bottom: 3px; }
.upload-privacy-warning .upw-storage {
  font-size: 14px; opacity: 0.75; margin-top: 6px;
}
.upload-drop-zone {
  border: 2px dashed #94d0d6; border-radius: 10px; background: #f0fafb;
  padding: 22px 16px; text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-drop-zone:hover,
.upload-drop-zone.drag-over { border-color: #027D8F; background: #e0f4f6; }
.upload-drop-zone .udz-icon { font-size: 28px; margin-bottom: 6px; }
.upload-drop-zone .udz-label { font-size: 15px; color: #1a3a4a; margin-bottom: 4px; }
.upload-drop-zone .udz-browse { color: #027D8F; text-decoration: underline; }
.upload-drop-zone .udz-note { font-size: 14px; color: #6b8c96; margin-top: 4px; }
.upload-preview {
  background: #f8fafb; border: 1px solid #d1e4e8; border-radius: 10px;
  padding: 14px; margin-top: 10px;
}
.upload-thumb-row { display: flex; align-items: center; gap: 12px; }
.upload-thumb {
  width: 56px; height: 56px; object-fit: cover; border-radius: 6px;
  border: 1px solid #ccc; flex-shrink: 0;
}
.upload-pdf-icon {
  width: 56px; height: 56px; border-radius: 6px; border: 1px solid #ccc;
  background: #fee2e2; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.upload-file-info { flex: 1; min-width: 0; }
.upload-file-name {
  font-size: 15px; color: #1a3a4a; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.upload-file-size { font-size: 14px; color: #6b8c96; margin-top: 2px; }
.upload-remove-btn {
  background: none; border: none; color: #6b8c96; cursor: pointer;
  font-size: 15px; padding: 4px 8px; border-radius: 4px; flex-shrink: 0;
}
.upload-remove-btn:hover { color: #c53030; background: #fee2e2; }
.upload-analyzing {
  display: flex; align-items: center; gap: 10px; padding: 10px 0 0;
  font-size: 15px; color: #027D8F;
}
.upload-analyzing .ua-spinner {
  width: 18px; height: 18px; border: 2px solid #b2dfe5;
  border-top-color: #027D8F; border-radius: 50%;
  animation: sacUploadSpin 0.8s linear infinite; flex-shrink: 0;
}
@keyframes sacUploadSpin { to { transform: rotate(360deg); } }
.upload-error {
  background: #fff5f5; border: 1px solid #fc8181; border-radius: 6px;
  padding: 10px 12px; font-size: 15px; color: #c53030; margin-top: 8px;
}
