publishRow td {
	border: none;
}

html, body {
	height: 100%;
	margin: 0;
/*	background-color: #f0fff0;    */
	color: #333;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.table-wrapper {
	display: table;
	width: 100%;
	height: 100vh;
	border-collapse: collapse;
/*	background-color: #eeffee; */
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.row {
	display: table-row;
}

.cell {
	display: table-cell;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 8px;
	vertical-align: top;
}

.col-1 {
	width: 1px;
	white-space: nowrap;
}

.col-2 {
	width: 100%;
}

.row-1,
.row-3 {
	height: 1px;
}

.row-2 .cell,
.fill {
	height: 100%;
}

.upload-wrapper {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.progress-container {
	position: relative;
	flex: 1;
	height: 30px;
}

.progress-container progress {
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	appearance: none;
}

.progress-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	pointer-events: none;
	text-shadow: 1px 1px 2px black;
	z-index: 1;
	transition: opacity 0.2s ease;
}

/* Optional: Responsive adjustment */
@media (max-width: 600px) {
	.upload-wrapper {
		flex-direction: column;
		align-items: stretch;
	}
}

.embeddedList {
	background-color: #eeffee; 
	border: 1px solid #ddd;
	width: 100%;
	border-collapse: collapse;
}

.embeddedList td,
.embeddedList th {
	padding: 8px;
	border: 1px solid #ccc;
}

#copyNotice {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #aaffaa;
	color: #111111;
	padding: 10px 20px;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 9999;
	pointer-events: none;
	font-family: sans-serif;
}

input[type="checkbox"] {
	transform: scale(1.5);
	transform-origin: center;
}

a.nolinkstyle {
	text-decoration: none;
	color: black;
}
a.nolinkstyle:visited {
	color: black;
}

th {
	white-space: nowrap;
}

.signup-form,
.lemmy-form {
	max-width: 400px;
}

.form-row {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.form-row label {
	width: 140px;
	text-align: right;
	padding-right: 10px;
}

.form-row input[type="text"],
.form-row input[type="password"] {
	flex: 1;
}

