.dataTables_wrapper {
	overflow: visible !important;
}

table.dataTable {
	overflow: visible !important;
}

table.dataTable tbody tr {
	overflow: visible !important;
}

table.dataTable td {
	overflow: visible !important;
}

.upload-box {
	position: relative;
	width: 100%;
	height: 200px;
	border: 2px dashed #ccc;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	transition: 0.3s;
	overflow: hidden;
	background-color: #fafafa;
}

.upload-box:hover {
	border-color: #007bff;
	background-color: #f1f9ff;
}

.upload-box span {
	color: #666;
	font-size: 14px;
	text-align: center;
}

.upload-box input[type="file"] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.upload-preview {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: 1;
	display: none;
}

.upload-icon {
	top: 30%;
	left: 50%;
	z-index: 1;
}

.upload-icon svg {
	width: 60px;
	height: 60px;
	color: #888;
}

.remove-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 5;
	background: #ff4d4d;
	border: none;
	color: white;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 18px;
	padding: 0;
	cursor: pointer;
}

.remove-btn:hover {
	background: #d80000;
}
