﻿/* Document Upload Styles */
.document-upload-container {
	padding: 20px 0;
}

.file-upload-wrapper {
	position: relative;
	border: 2px dashed #ccc;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.file-upload-wrapper:hover {
	border-color: #6c757d;
}

.file-upload-wrapper.dragover {
	border-color: #007bff;
	background-color: rgba(0, 123, 255, 0.05);
}

.file-upload-wrapper input[type="file"] {
	cursor: pointer;
}

.upload-icon {
	font-size: 2rem;
	color: #6c757d;
	margin-bottom: 10px;
}

.file-upload-label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
}

.recent-upload-item {
	transition: all 0.2s ease;
}

.recent-upload-item:hover {
	background-color: rgba(0, 123, 255, 0.05);
}

.upload-progress {
	height: 6px;
	margin-top: 15px;
}

.metadata-field {
	margin-top: 15px;
}

/* Status indicators */
.upload-status-indicator {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 5px;
}

.status-success {
	background-color: #28a745;
}

.status-error {
	background-color: #dc3545;
}

.status-processing {
	background-color: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.card-header h4 {
		font-size: 1.2rem;
	}

	.recent-upload-item .d-flex {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.recent-upload-item .d-flex small:last-child {
		margin-top: 5px;
	}
}
