.haris-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}

.ha-btn {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	background: #f8f9fa;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
}

.ha-btn[aria-pressed="true"] {
	background: #111;
	color: #fff;
	border-color: #111;
}

.ha-icon {
	font-size: 15px;
}

.ha-count {
	font-weight: 700;
}

.haris-modal-root[aria-hidden="true"] {
	display: none;
}

.ha-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .35);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 9999;
}

.ha-box {
	width: min(680px, 92vw);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
	padding: 20px;
	position: relative;
}

.ha-close {
	position: absolute;
	top: 8px;
	right: 10px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	width: 28px;
	height: 28px;
	cursor: pointer;
}

.ha-content :where(input, textarea) {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
}

.ha-content .ha-row {
	margin-bottom: 10px;
}

.ha-submit {
	padding: 10px 14px;
	border: 1px solid var(--accent-2);
	background: var(--accent-2);
	color: var(--accent-4);
	border-radius: 10px;
	cursor: pointer;
}

.ha-toast {
	position: fixed;
	left: 50%;
	transform: translate(-50%, 20px);
	bottom: 18px;
	background: #111;
	color: #fff;
	padding: 10px 14px;
	border-radius: 8px;
	opacity: 0;
	transition: all .25s ease;
	z-index: 10000;
}

.ha-toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* breadcrumbs structure */

.header-haris {
	width: 90%;
	margin: auto;
}

.haris-breadcrumbs {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #ffffff;
	background: var(--accent-4);
	padding: 8px 15px;
	border-radius: 0px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	height: 60px;
	width: 100%;
}

.haris-breadcrumbs a {
	text-decoration: none;
	color: var(--accent-2);
	font-weight: 500;
	transition: color 0.3s ease;
}

.haris-breadcrumbs a:hover {
	color: var(--accent-2);
	text-decoration: none;
}

.haris-breadcrumbs .separator {
	margin: 0 5px;
	color: var(--accent-2);
}

.haris-breadcrumbs span {
	font-weight: 500;
	color: var(--accent-2);
}