/* OWG Policy Hub — front-end styles. Scoped under .owgph- classes so it
   plays safely alongside any theme. */

.owgph-progress {
	border: 1px solid #d9dee3;
	background: #f8fafc;
	border-radius: 10px;
	padding: 16px 20px;
	margin: 0 0 24px;
}
.owgph-progress--complete {
	border-color: #b7e4c7;
	background: #f0faf3;
}
.owgph-progress-bar {
	width: 100%;
	height: 10px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 10px;
}
.owgph-progress-bar--small {
	display: inline-block;
	width: 120px;
	height: 8px;
	vertical-align: middle;
	margin-right: 8px;
	margin-bottom: 0;
}
.owgph-progress-fill {
	height: 100%;
	background: #2f855a;
	border-radius: 999px;
	transition: width 0.3s ease;
}
.owgph-progress--incomplete .owgph-progress-fill {
	background: #d97706;
}
.owgph-progress p {
	margin: 0;
	font-size: 0.95em;
}

.owgph-dashboard {
	max-width: 960px;
}
.owgph-search {
	width: 100%;
	max-width: 420px;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	margin-bottom: 24px;
	font-size: 1em;
	display: block;
}
.owgph-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.owgph-category {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 16px 18px;
}
.owgph-category-title {
	margin: 0 0 4px;
	font-size: 1.05em;
}
.owgph-category-desc {
	margin: 0 0 10px;
	font-size: 0.85em;
	color: #64748b;
}
.owgph-policy-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.owgph-policy-item {
	padding: 6px 0;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
}
.owgph-policy-item:first-child {
	border-top: none;
}
.owgph-policy-item.owgph-hidden {
	display: none;
}
.owgph-tag {
	font-size: 0.72em;
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
}
.owgph-tag--read {
	background: #d1fae5;
	color: #065f46;
}
.owgph-tag--unread {
	background: #fef3c7;
	color: #92400e;
}

.owgph-updated {
	color: #64748b;
	font-size: 0.9em;
	margin-top: 2em;
}
.owgph-admin-stats {
	color: #64748b;
	font-size: 0.85em;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 6px;
	padding: 8px 12px;
	display: inline-block;
}
.owgph-ack {
	margin-top: 1.5em;
	padding: 18px 20px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
}
.owgph-ack--done {
	background: #f0faf3;
	border-color: #b7e4c7;
	color: #065f46;
	font-weight: 600;
	padding: 14px 18px;
}
.owgph-ack-disclaimer {
	font-size: 0.88em;
	color: #475569;
	margin: 0 0 12px;
}
.owgph-ack-button {
	background: #0f172a;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 1em;
	cursor: pointer;
}
.owgph-ack-button:hover {
	background: #1e293b;
}
.owgph-ack-button[disabled] {
	opacity: 0.6;
	cursor: default;
}
.owgph-login-notice {
	color: #92400e;
	background: #fef3c7;
	padding: 10px 14px;
	border-radius: 8px;
}
