/* JuryHQ - Additional styles beyond Tailwind */

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
		sans-serif;
	margin: 0;
}

/* Site Header */
.jhq-site-header {
	background: white;
	border-bottom: 1px solid #e2e8f0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.jhq-site-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.jhq-site-logo {
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(135deg, #059669, #047857);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.jhq-site-logo:hover {
	opacity: 0.9;
}

.jhq-header-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.jhq-header-welcome {
	font-size: 14px;
	color: #64748b;
}

.jhq-header-logout {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
}

.jhq-header-logout:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

/* Hide nav on login page */
.jhq-login-page .jhq-site-header {
	display: none;
}

/* Homepage hero */
.jhq-hero {
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
	background: #94a3b8;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #64748b;
}

/* Focus styles */
input:focus-visible,
button:focus-visible {
	outline: 2px solid #059669;
	outline-offset: 2px;
}
