/* Поле файла с возможностью перетаскивания */
.tecsa-file-field .tecsa-file-input {
	position: absolute;
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	z-index: -1;
}

.tecsa-file-drop {
	display: block;
	box-sizing: border-box;
	padding: 16px;
	border: 2px dashed #ccc;
	border-radius: 8px;
	background: #fafafa;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s, background 0.2s;
}

.tecsa-file-drop:hover,
.tecsa-file-drop.tecsa-file-drop--over {
	border-color: #1558a0;
	background: #f0f6fc;
}

.tecsa-file-drop .tecsa-file-drop-text {
	display: block;
	color: #666;
	font-size: 0.9rem;
}

.tecsa-file-drop .tecsa-file-drop-name {
	display: block;
	margin-top: 6px;
	font-size: 0.85rem;
	color: #1558a0;
	font-weight: 500;
}

.tecsa-file-drop.tecsa-file-drop--has-file .tecsa-file-drop-text {
	color: #333;
}
