@import url('bootstrap-icons/font/bootstrap-icons.css');
html {
    
	/*font-size: 62.5%; /* 10px = 10px */
	scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: #f8f8f8;
  color: #212529;
}
a, .nav-link{
    color: #212529;

}

.drop-zone {
	border: 3px dashed #dee2e6;
	border-radius: 10px;
	padding: 40px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #f8f9fa;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.drop-zone:hover {
	border-color: #0d6efd;
	background-color: #e7f1ff;
}

.drop-zone.dragover {
	border-color: #198754;
	background-color: #d1e7dd;
}

.image-preview {
	max-width: 100%;
	max-height: 400px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.status-message {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1050;
	min-width: 300px;
}

.image-info-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
}

.file-list {
	max-height: 400px;
	overflow-y: auto;
}

.folder-badge {
	background-color: #6f42c1;
	color: white;
}

.saved-images {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
}
