		table {
			border-collapse: collapse;
			table-layout: fixed;
			width: 50%;
		}
		td {
			/* padding: -20; */
			/* width: 45px; */
			/* height: 45px; */
			/* position: relative; */
			cursor: pointer;
			border: 1px solid white;
		}
		.highlight {
            background-color: crimson;
			vertical-align: middle;
		}
		img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			vertical-align: middle;
			text-align: center;
			/* object-position: center; */
            /* background-position: center; */
		}
		.overlay {
			display: none;
			position: fixed;
			top: 0;
			right: 0;
			bottom: 0;
			left: 50%;
			background-color: rgba(0,0,0,0);
			z-index: 999;
		}
		.overlay img {
			max-width: 100%;
			max-height: 100%;
			margin: auto;
			display: block;
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
		}
		.button-container {
            position: absolute;
            left: 75%;
            top: 5%;
            transform: translate(-50%, -50%);
        }
		.button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            margin-right: 10px;
        }