/* Fileupload control */
.imixsfileupload {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}
.imixsfileupload table {
	width: 100%;
	border-collapse: collapse;
}
.imixsfileupload table, 
.imixsfileupload td {
	border-bottom: 1px solid #ccc;
	text-align: left;
	padding: 5px;
}
.imixsfileupload th{
	background-color: #efefef;
	border-bottom: 2px solid #206B87;
}
.imixsfileupload table th:last-child,
.imixsfileupload table td:last-child {
	width: 30px;
	text-align: center;
}

.imixsfileupload input[type="file"] {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
	font-weight: 700;
  }
.imixsfileupload input[type="file"] + label {
	font-size: 14px;
	font-weight: 600;
	color: white;
	background-color: #206B87;;
	display: inline-block;
	padding: 0.35em 0.75em;
	border-radius: 4px;
	cursor: pointer;
	border-radius: 0;
	text-align: center;
	flex-grow: 1;
}
  
.imixsfileupload input[type="file"] + label:hover {
	background-color: #206B87;;
  }

.imixsfileupload .drop-area {
	border: 2px dashed #ccc;
	border-radius: 2px;
	padding: 20px;
	text-align: center;
	padding: 5px 40px;
	transition: border-color 0.3s ease;
	flex-grow: 1;
	min-width: 200px;
  }
  
.imixsfileupload .drop-area.highlight {
	border-color: #4285f4;
	background-color: rgba(66, 133, 244, 0.1);
}
  
.imixsfileupload .drop-area span {
	color: #666;
	margin: 0;
  }

.imixsfileupload-table {
	flex-grow: 1;
	flex-basis: 100%; 
}

.imixsfileupload .remove-link {
	cursor: pointer;
}
.imixsfileupload .remove-link:hover {
	text-decoration: none;
}