/* The start menu. The shell builds the entries from the index of the apps. */
.start-menu {
	position: fixed;
	bottom: 32px;
	left: 4px;
	width: 220px;
	background: var(--menu);
	color: var(--menu-text);
	border: 2px solid var(--btn-hilight);
	border-bottom-color: var(--btn-shadow);
	border-right-color: var(--btn-shadow);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
	display: none;
	z-index: 20000;
	font-size: 11px;
}
/*
 * The name of the site, over the entries. The line under the bar has its own
 * color, because a theme can give the title bar and the menu the same color.
 * Then the two parts run into one.
 */
.start-header {
	height: 50px;
	background: linear-gradient(90deg, var(--active-title) 0%, var(--active-title-2) 100%);
	color: var(--title-text);
	display: flex;
	align-items: center;
	padding-left: 10px;
	font-weight: bold;
	font-size: 14px;
	border-bottom: 2px solid var(--start-header-line);
}
.start-programs {
	padding: 4px 0;
}
.start-item {
	padding: 4px 8px;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
}
.start-item:hover {
	background: var(--hilight);
	color: var(--hilight-text);
}
.start-icon {
	font-size: 18px;
	width: 20px;
	text-align: center;
	line-height: 1;
}
.start-separator {
	height: 2px;
	background: var(--btn-shadow);
	border-top: 1px solid var(--btn-hilight);
	margin: 4px 8px;
}

/*
 * A folder shows its entries next to the start menu, in the way that the
 * folder Programs of Windows 2000 does it.
 */
.start-folder {
	position: relative;
}
.start-arrow {
	margin-left: auto;
	padding-left: 12px;
	display: flex;
	align-items: center;
}
.start-submenu {
	position: absolute;
	left: 100%;
	top: -6px;
	min-width: 150px;
	padding: 4px 0;
	background: var(--menu);
	color: var(--menu-text);
	border: 2px solid var(--btn-hilight);
	border-bottom-color: var(--btn-shadow);
	border-right-color: var(--btn-shadow);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
	display: none;
}
.start-folder:hover > .start-submenu {
	display: block;
}
