body {
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 40px);
	font-family: Helvetica, Arial, sans-serif;
}

#upload-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	gap: 8px;
	position: fixed;
    left: 0;
    top: 0;
}

.preview-strip {
	display: flex;
	align-items: center;
	flex-direction: column;
	/* background: hsla(30, 18%, 91%, .7); */
    padding: 16px;
    /* border-radius: 34px; */
    /* box-shadow: 0 10px 10px rgb(0 0 0 / 6%); */
    /* -webkit-backdrop-filter: blur(30px); */
    /* backdrop-filter: blur(30px); */
}

.thumb {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	object-fit: cover;
	/* border-radius: 12px; */
	transition: transform 160ms ease, box-shadow 160ms ease;
	border: 2px solid #fff;
    box-shadow: 0 10px 10px rgb(0 0 0 / 6%);
    position: relative;
	transform: rotate(-1deg);
}

.thumb:not(:first-child) {
	margin-top: -28px;
}

.thumb:hover {
	transform: translateY(-2px) rotate(-2deg);
	box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.upload-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.upload-button {
	background:transparent;
	color: #222;
	border: 0;
	padding: 8px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .2px;
	user-select: none;
}

.upload-button:hover {
	background: #00000010;
}

.upload-status {
	margin: 2px 2px 0 2px;
	font-size: 12px;
	color: #666;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.elevated-pill {
	border-radius: 28px;
}

#canvas-container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

canvas {
	max-width: 100% !important;
	max-height: 100% !important;
	width: auto !important;
	height: auto !important;
}