body {
			background-color: #222;
			color: #FFFFFF;
			font-family: Arial, sans-serif;
			font-size: 16px;
			line-height: 1.5;
			margin: 0;
			padding: 0;
		}

		table {
			background-color: #222;
			border-collapse: collapse;
			box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
			margin: 50px auto;
			width: 80%;
		}

		th, td {
			border: 1px solid #444444;
			padding: 10px;
			text-align: center;
		}

		th {
			background-color: dimgrey;
			color: #FFFFFF;
			font-weight: bold;
		}

		td {
			background-color: #333;
			color: #FFFFFF;
		}

		td:hover {
			background-color: #444444;
			cursor: pointer;
		}

		/* Neomorphism effect */
		table:before {
			content: "";
			background-color: #222;
			box-shadow: inset -3px -3px 5px rgba(255, 255, 255, 0.05),
				inset 3px 3px 5px rgba(0, 0, 0, 0.2);
			height: 100%;
			left: 10px;
			position: absolute;
			top: 10px;
			width: 100%;
			z-index: -1;
		}

		table:after {
			content: "";
			background-color: #222;
			box-shadow: inset -3px -3px 5px rgba(255, 255, 255, 0.05),
				inset 3px 3px 5px rgba(0, 0, 0, 0.2);
			height: 100%;
			left: -10px;
			position: absolute;
			top: -10px;
			width: 100%;
			z-index: -1;
		}