/* cloud.css
 * The cloud storage picker (AI-ONLINE-FEATURES-PLAN.md, Phase 19, feature 48).
 *
 * A short list of services, then a plain list of folders and files. Nothing
 * here is a grid of thumbnails: the point is to find one document and open it.
 */

.ts-cloud-providers { display: flex; flex-direction: column; gap: 0.4rem; margin: 0.5rem 0; }
.ts-cloud-files { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.5rem; }

.ts-cloud-provider,
.ts-cloud-file { align-items: center; gap: 0.5rem; }

.ts-cloud-icon { margin-right: 0.35rem; }

/* The trail of folders, which wraps rather than scrolls sideways. */
.ts-cloud-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  padding-bottom: 0.4rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
body.light-mode .ts-cloud-crumbs { border-bottom-color: rgba(0, 0, 0, 0.12); }

/* "Open from cloud", under the URL row in the upload area. */
.upload-cloud-row { margin-top: 0.5rem; text-align: center; }
