
.assets-flex-container {
  display: flex;
  width: 100%;
}

.assets-two-thirds {
  flex: 2; /* 2 parts */
}

.assets-one-third {
  flex: 1; /* 1 part */
}

.assets-one-fourth {
  flex: 0.25; /* 1/4 part */
}

.assets-list {
	list-style-type: none;
	margin: 0em 1em 1em 0em;
	padding: 0;
}

.assets-list li {
	margin: 0.5em 0em 0em 0em;
}

.assets-list li a {
	color: black;
}

.results-list {
	list-style-type: none;
	margin: 0em 1em 1em 0em;
	padding: 0;
}

.results-list li a {
	font-size: .75em;
	color: black;
}

.icon-list {
	list-style-type: none;
	margin: 0em 1em 0em 0em;
	padding: 0;
}

.icon-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5em 0;
}

.list-icon {
	margin-left: 1em;
}

.hover-pointer {
	cursor: pointer;
}

.drop-area {
  border: 2px dashed #ccc;
  margin: auto;
  margin-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drop-area p {
  margin: 0.5em;
}

.drop-area input {
  margin: 0.5em 0em 0.5em 5em;
}

.drop-area.highlight {
  border-color: purple;
}

.drop-area-button {
  border: 2px dashed #ccc;
  background: transparent;
  color: #666;
  padding: 0.8rem 1rem;
  margin: 0.5em;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.drop-area-button:hover {
  border-color: #999;
  background-color: rgba(0,0,0,0.04);
}

.drop-area-button:active {
  background-color: rgba(0,0,0,0.08);
}

.file-display-container {
  margin: 0.5em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.file-display-box {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.25em 0.5em;
  font-size: 0.85em;
  max-width: 200px;
}

.file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 0.5em;
}

.file-cancel {
  cursor: pointer;
  color: #999;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0 0.2em;
  border-radius: 2px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.file-cancel:hover {
  color: #666;
  background-color: #ddd;
}

.metrics-flex-container {
  display: flex;
}

.metrics-column {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.metrics-radio-input {
  align-items: center;
}

.metrics-radio-input label {
  margin: 0em 2em 0em 0em;
}

.metrics-radio-input input {
  accent-color: black;
}

.row-of-buttons {
  margin: 1em 0em 1em 0em;
}

.no-justify {
  display: flex;
  justify-content: center;
}

.right-justify {
  display: flex;
  justify-content: flex-end;
}

.red-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-radius: 4px;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background-color: #e44c45 !important;
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  height: 3em;
  line-height: 3em;
  padding: 0em 2em 0em 2em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.white-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid black;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  color: #000000;
  /*background-color: #f5f5f5 !important;*/
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  height: 3em;
  line-height: 3em;
  padding: 0em 2em 0em 2em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.test-submit-form {
  margin: 1em 0em 1em 0em;
}

.test-submit-input {
  margin: 0.5em;
}

.test-submit-input[type="number"] {
  width: 64px;
}

.test-submit-button {
  align-self: flex-end;
}

.test-submit-raw-input {
  margin: 1em 2em 1em 1em;
}

code {
  font-size: 0.96em;
}
