/*B"H*/
.apps {
	display: flex;
	align-items: center;
	
	    padding: 30px;
	flex-direction: column;
}

.chrystalis-title {
    font-size: 2.0em;
    color: #2c3e50; /* A modern, deep blue-gray */
	text-shadow: 1px 1px 0px #ecf0f1, 2px 2px 0px #bdc3c7; /* Subtle 3D text effect */
	margin-bottom: 20px; /* Adds some space below the title */
	font-weight: bold;
	letter-spacing: -2px; /* Tightens up the letter spacing for a compact, modern look */
}

.chrystalis-element {
	display: flex;
}

a.chrystalis-element {
	padding: 6px;
	margin: 6px;
	font-size: 2em;
	text-decoration: none;
	color: #000000;
	border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border for a glassy feel */
	transition: all 0.3s ease;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%, rgba(0, 0, 0, 0.1) 100%); /* Gradient for a shiny, glossy look */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); /* Deeper shadow for a 3D pop and inner highlight */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); /* Engraved text effect */
	border-radius: 10px; /* Rounded corners for a softer, more modern look */
	backdrop-filter: blur(10px); /* Frosted glass effect */
}

a.chrystalis-element:hover {
	color: white;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%); /* Darker gradient on hover */
	transform: perspective(75em) translate3d(5px, 0px, 100px) rotateX(10deg) rotateY(-5deg); /* More dynamic 3D transformation */
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3); /* Enhanced shadow for a lifted effect */
}

a.chrystalis-element:active {
	color: #e0e0e0; /* Slightly dimmed text on press */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%); /* Inverted gradient for a pressed-in look */
	transform: perspective(75em) translate3d(2px, -2px, 80px); /* Less dramatic transform for a pressed-in feel */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3); /* Inner shadow to create a pressed-in depth */
}

.chrystalis-nav {
border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border for the container */

	transform: perspective(75em) rotateX(18deg);
	box-shadow: rgba(22, 31, 39, 0.42) 0px 60px 123px -25px,
		rgba(19, 26, 32, 0.08) 0px 35px 75px -35px;
	display: flex;
	background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background for a frosted glass effect */
	flex-direction: column;
	border-radius: 15px; /* Rounded corners for the navigation container */
	max-height: 50vh;
	overflow-y: auto;
	min-width: 65vw;
	
    padding: 20px;
}