* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #f3f4f6;
	color: #1f2937;
}
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.loading-overlay.show {
	opacity: 1;
	visibility: visible;
}
.spinner {
	width: 48px;
	height: 48px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top-color: #f59e0b;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
.toast-container {
	position: fixed;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1100;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.toast {
	background: white;
	border-radius: 40px;
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s;
}
.toast.show {
	transform: translateY(0);
	opacity: 1;
}
.toast-success {
	border-left: 4px solid #10b981;
}
.toast-error {
	border-left: 4px solid #ef4444;
}
.btn-primary {
	background: #f59e0b;
	color: white;
	border: none;
	padding: 0.75rem;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}
.btn-outline {
	background: transparent;
	border: 1px solid #e5e7eb;
	padding: 0.5rem 1rem;
	border-radius: 40px;
	cursor: pointer;
}
.btn-sm {
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
}
.form-control,
.form-select {
	width: 100%;
	padding: 0.625rem;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	font-size: 0.9rem;
}
.form-card {
	background: white;
	border-radius: 16px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form-section-title {
	font-weight: 700;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.form-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #4b5563;
}
.empty-state {
	text-align: center;
	padding: 2rem;
	color: #9ca3af;
}
.icon-btn {
	background: transparent;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	color: #6b7280;
	border-radius: 8px;
}
