.hrms-fe-wrap {
	max-width: 480px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.hrms-fe-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 4px;
}
.hrms-fe-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
}
.hrms-fe-company {
	font-size: 13px;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
}
.hrms-fe-greeting {
	font-size: 20px;
	font-weight: 700;
}
.hrms-fe-sub {
	font-size: 13px;
	color: #6b7280;
}
.hrms-fe-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	padding: 18px;
	margin-bottom: 14px;
}
.hrms-fe-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 10px;
}
.hrms-fe-status-on {
	background: #dcfce7;
	color: #166534;
}
.hrms-fe-status-off {
	background: #f3f4f6;
	color: #4b5563;
}
.hrms-fe-stats {
	display: flex;
	gap: 16px;
	margin: 12px 0;
	flex-wrap: wrap;
}
.hrms-fe-stat {
	flex: 1;
	min-width: 90px;
}
.hrms-fe-stat-label {
	font-size: 12px;
	color: #6b7280;
}
.hrms-fe-stat-value {
	font-size: 18px;
	font-weight: 700;
}
.hrms-fe-btn {
	display: block;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	margin-top: 8px;
}
.hrms-fe-btn-primary {
	background: #16a34a;
	color: #fff;
}
.hrms-fe-btn-danger {
	background: #dc2626;
	color: #fff;
}
.hrms-fe-btn:disabled {
	background: #d1d5db;
	color: #6b7280;
	cursor: not-allowed;
}
.hrms-fe-retailer-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}
.hrms-fe-retailer-item:last-child {
	border-bottom: none;
}
.hrms-fe-retailer-name {
	font-weight: 600;
}
.hrms-fe-retailer-address {
	font-size: 12px;
	color: #6b7280;
}
.hrms-fe-small-btn {
	padding: 8px 14px;
	border: none;
	border-radius: 8px;
	background: #2563eb;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}
.hrms-fe-message {
	text-align: center;
	font-size: 14px;
	min-height: 20px;
	color: #b91c1c;
}
.hrms-fe-badge-red { color: #dc2626; font-weight: 700; }
.hrms-fe-badge-orange { color: #d97706; font-weight: 700; }
.hrms-fe-badge-green { color: #16a34a; font-weight: 700; }
.hrms-fe-logout {
	font-size: 13px;
	color: #6b7280;
	text-decoration: none;
	white-space: nowrap;
}
.hrms-fe-login-wrap {
	margin-top: 40px;
}
.hrms-fe-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}
.hrms-fe-bell-wrap {
	position: relative;
}
.hrms-fe-bell-btn {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	position: relative;
	padding: 6px;
}
.hrms-fe-bell-count {
	position: absolute;
	top: 0;
	right: 0;
	background: #dc2626;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 10px;
	padding: 1px 5px;
	min-width: 14px;
}
.hrms-fe-bell-dropdown {
	position: absolute;
	right: 0;
	top: 36px;
	width: 260px;
	max-height: 320px;
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	z-index: 50;
}
.hrms-fe-notif-item {
	padding: 10px 14px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	text-align: left;
}
.hrms-fe-notif-item:last-child {
	border-bottom: none;
}
.hrms-fe-notif-unread {
	background: #eff6ff;
}
.hrms-fe-notif-title {
	font-size: 13px;
	font-weight: 600;
}
.hrms-fe-notif-msg {
	font-size: 12px;
	color: #6b7280;
}
.hrms-fe-notif-empty {
	padding: 16px;
	font-size: 13px;
	color: #6b7280;
	text-align: center;
}
.hrms-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.hrms-modal {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	max-width: 420px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}
