* {
	box-sizing: border-box;
}

body.jl-body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #f4f5f7;
	color: #1d2327;
}

/* Login */
.jl-login-wrap {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.jl-login-box {
	background: #fff;
	padding: 32px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 360px;
}

.jl-login-box h1 {
	margin-top: 0;
	font-size: 22px;
}

.jl-login-box label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
}

.jl-login-box input[type="text"],
.jl-login-box input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
	font-size: 15px;
}

.jl-login-box button {
	width: 100%;
	padding: 12px;
	margin-top: 10px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}

.jl-login-box button:hover {
	background: #135e96;
}

.jl-error {
	color: #d63638;
	font-weight: 600;
}

/* App */
.jl-app-wrap {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.jl-app-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.jl-app-header h1 {
	font-size: 26px;
	margin: 0;
}

.jl-logout {
	font-size: 14px;
	color: #2271b1;
	text-decoration: none;
}

.jl-logout:hover {
	text-decoration: underline;
}

.jl-section {
	background: #fff;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.jl-section h2 {
	margin-top: 0;
	font-size: 20px;
}

.jl-divider {
	border: none;
	border-top: 2px dashed #c3c4c7;
	margin: 28px 0;
}

.jl-upload-trigger {
	padding: 12px 24px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}

.jl-upload-trigger:hover {
	background: #135e96;
}

.jl-upload-trigger[disabled] {
	opacity: 0.6;
	cursor: default;
}

.jl-status {
	margin: 14px 0 0;
	font-size: 14px;
	color: #50575e;
	min-height: 18px;
}

.jl-status.is-success {
	color: #00a32a;
	font-weight: 600;
}

.jl-status.is-error {
	color: #d63638;
	font-weight: 600;
}
