.wpforms-panel-fields .wpforms-field.size-large input[type="file"] {
	width: 100%;
}

.wpforms-panel-fields .wpforms-field.size-small input[type="file"] {
	width: 25%;
}

/**
 * File input style for forntend
 */

.wpforms-container input[type="file"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-style: normal;
	font-weight: 400;
	margin: 0;
}

/* div.wpforms-container-full input[type="file"] {
	background-color: var(--wpforms-field-background-color);
	background-clip: padding-box;
	border-radius: var(--wpforms-field-border-radius);
	color: var(--wpforms-field-text-color);
	border-width: var(--wpforms-field-border-size);
	border-style: var(--wpforms-field-border-style);
	border-color: var(--wpforms-field-border-color);
	padding: 0 var(--wpforms-field-size-padding-h);
	font-size: var(--wpforms-field-size-font-size);
	line-height: 100%;
	box-shadow: none;
	transition: border 0.15s, box-shadow 0.15s;
} */

.wpforms-container-full input[type="file"] {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0.5rem 1rem;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.wpforms-container-full input[type="file"]:hover {
	background-color: #f1f1f1;
	border-color: #999;
}

.wpforms-container-full input[type="file"]:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}


