.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 1);
	z-index: 10000;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 300px;
	animation: slideIn 0.3s ease;
}

.notification.success {
	background: var(--success);
	transform: translate(0, 0);
}

.notification.error {
	background: var(--danger);
}

.notification.info {
	border-left: 4px solid var(--primary);
}

.notification-content {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.notification-content i {
	font-size: 18px;
}

.notification.success .notification-content i {
	color: var(--white);
}

.notification.error .notification-content i {
	color: var(--danger);
}

.notification.info .notification-content i {
	color: var(--primary);
}

.notification-close {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: var(--text-light);
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.notification-close:hover {
	background-color: var(--hover);
	transform: translateY(0px);
	box-shadow: unset;
}

.notification-close > svg {
    transition: all 0.3s ease-in-out;
}

.notification-close:hover > svg {
    fill: var(--secondary);
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

.import-dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	padding: 20px;
}

.import-dialog {
	background: var(--bg-card);
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	animation: dialogSlideIn 0.3s ease;
}

.import-dialog-header {
	padding: 24px 24px 0 24px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 20px;
}

.import-dialog-header h3 {
	margin: 0 0 20px 0;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 8px;
}

.import-dialog-content {
	padding: 0 24px 20px 24px;
}

.shared-set-preview {
	background: var(--bg);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
	border-left: 4px solid #4361ee;
}

.shared-set-preview h4 {
	margin: 0 0 8px 0;
	color: var(--text);
}

.shared-set-preview .description {
	color: var(--text-light);
	margin: 4px 0;
	font-size: 14px;
}

.shared-set-preview .category {
	color: var(--text-light);
	margin: 4px 0;
	font-size: 14px;
}

.shared-set-preview .card-count {
	color: var(--text);
	margin: 8px 0 0 0;
	font-weight: 500;
}

.import-dialog-actions {
	padding: 0 24px 24px 24px;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.cancel-btn,
.import-btn {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.cancel-btn {
	background: transparent;
	color: var(--text-light);
	border: 1px solid var(--border);
}

.cancel-btn:hover {
	background: var(--hover);
	color: var(--text);
}

.import-btn {
	background: var(--success);
	color: white;
}

.import-btn:hover {
	background: var(--success-hover);
}

@keyframes dialogSlideIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}