.appdash-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 16px;
	margin: 12px 0 24px;
}
.appdash-manage-grid {
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.appdash-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 14px 8px;
	border-radius: 8px;
	border: 1px solid #e2e2e2;
	background: #fff;
	cursor: grab;
	transition: box-shadow 0.15s ease, transform 0.1s ease;
	text-decoration: none;
	color: inherit;
	user-select: none;
}
.appdash-tile:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.appdash-tile.appdash-dragging {
	opacity: 0.4;
}
.appdash-tile-icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 8px;
	pointer-events: none;
}
.appdash-tile-icon-fallback {
	width: 48px;
	height: 48px;
	margin-bottom: 8px;
	border-radius: 6px;
	background: #f0f0f1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	color: #666;
	pointer-events: none;
}
.appdash-tile-title {
	font-size: 13px;
	line-height: 1.3;
	pointer-events: none;
	word-break: break-word;
}
.appdash-tile-link {
	position: absolute;
	inset: 0;
	border-radius: 8px;
}
.appdash-favorite-toggle {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 26px;
	height: 26px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	line-height: 26px;
	color: #ccc;
	z-index: 2;
}
.appdash-favorite-toggle.is-favorited {
	color: #d9a300;
}
.appdash-favorite-toggle:hover {
	color: #d9a300;
}
.appdash-section-title {
	margin-bottom: 4px;
}
.appdash-loading,
.appdash-empty-hint,
.appdash-save-status,
.appdash-favorites-save-status {
	font-size: 13px;
	color: #666;
}
.appdash-save-status.is-error,
.appdash-favorites-save-status.is-error {
	color: #b32d2e;
}
.appdash-save-status.is-success,
.appdash-favorites-save-status.is-success {
	color: #2a7a2a;
}
.appdash-manage-divider {
	border: none;
	border-top: 1px solid #e2e2e2;
	margin: 32px 0;
}
.appdash-manage-header .appdash-cap-note {
	font-size: 12px;
	color: #888;
	margin-top: -4px;
}
.appdash-logged-out {
	font-style: italic;
	color: #666;
}
.appdash-category-section {
	margin-bottom: 8px;
}
.appdash-category-heading {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #555;
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 6px;
	margin: 0 0 12px;
}
.appdash-category-grid {
	margin-bottom: 8px;
}
