#my_head {
  text-align: center;
  height: var(--my-bar-height-l);
  margin: auto;
  padding: 6px;
  max-width: 960px;
}

#logo {
  font-size: x-large;
  font-family: LogoFont, sans-serif;
  height: var(--my-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo a {
	text-decoration: none;
}

#logo a:hover {
	text-decoration: underline;
}

#searchCtrl {
	display: flex;
	align-items: center;
}

#prompt {
	flex-shrink: 1;
	flex-grow: 1;
	box-sizing: border-box;
	font-size: medium;
	border-radius: 8px;
	padding: 8px;
	margin: 0px;
	height: var(--my-bar-height-l);
}

#prompt::placeholder {
	font-size: x-large;
}

#searchIt {
	flex-shrink: 0;
	cursor: pointer;
	background-color: transparent;
	border-right: none;
	border-bottom: none;
	border-top: none;
	border-left: 2px solid rgb(128, 128, 128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	width: var(--my-bar-height-l);
	height: var(--my-bar-height-l);
}

#searchIt:hover {
	background-color: var(--my-button-hover);
}

#generateIt {
	flex-shrink: 0;
	cursor: pointer;
	background-color: transparent;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	width: var(--my-bar-height-l);
	height: var(--my-bar-height-l);
}

#generateIt:hover {
	background-color: var(--my-button-hover);
}

#progressBar {
	display: none;
	flex-grow: 1;
	box-sizing: border-box;
	height: var(--my-bar-height-l);
	justify-content: space-between;
	align-items: center;
	margin: 0px 4px;
}

#progressBar>div:last-child {
	margin-left: 6px;
	white-space: pre;
}

#my_foot {
	text-align: center;
}

/* body */
#my_body {
	padding: 0px 2px;
	display: flex;
	justify-content: center;
}

#details {
	border: 1px solid #000;
	border-collapse: collapse;
	margin-top: 8px;
}

#details img {
	max-width: calc(100vw - 12px);
}

#details td {
	border: 1px solid #666;
	padding: 4px;
	word-break: break-all;
}

.label {
	font-size: large;
	text-align: right;
}

.details-prompt {
	font-size: x-large;
	color: yellowgreen;
}

.details-en-prompt {
	font-size: x-large;
	color: yellow;
}

.details-image {
	text-align: center;
	height: 256px;
}

.details-image>img {
	vertical-align: bottom;
}

.download>img {
	margin-right: 4px;
}

.download {
	height: var(--my-bar-height-ns);
	cursor: pointer;
	color: var(--my-button-dark);
	background-color: var(--my-button-light);
	border: 1px solid var(--my-button-dark);
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	padding: 0px 8px;
}

.download:hover {
	background-color: var(--my-button-hover);
}

.copy-button {
	border: none;
	background: none;
	vertical-align: bottom;
	cursor: pointer;
}

@media (max-width: 575.98px) {
}