/* ============================================
   Illumination Menu - CSS Style Definitions
   ============================================ */

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f8f8;
	display: flex;
	flex-direction: column;
	align-items: center;
}

header {
	width: 100%;
	padding: 10px 20px;
	background-color: #606060;
	color: white;
	text-align: center;
	font-size: 1.5em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tabs {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	border-bottom: 2px solid #ccc;
}

.tab {
	padding: 10px 20px;
	margin: 0 5px;
	cursor: pointer;
	font-size: 1.2em;
	color: #404040;
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
	background-color: #e0e0e0;
}

.tab.active {
	background-color: #606060;
	color: white;
	border-bottom: none;
}

.content {
	width: 80%;
	max-width: 800px;
	margin: 20px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.button {
	background: linear-gradient(to bottom, #ffffff, #d0d0d0);
	border: 1px solid #a0a0a0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	font-size: 1em;
	color: #404040;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s, transform 0.2s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}

.button i {
	font-size: 2em;
	margin-bottom: 10px;
	color: #808080;
}
