/* CSS Document */
table {
	width: 100%;
	border: 1px solid;
	border-collapse: collapse;
}
td {
	padding: 20px 20px 20px 20px;
	margin: 0;
	text-align: center;
	border: 1px solid;
}
img, td img {
	text-align: center;
	border: 1px solid;
}
img_small {
	width: 80px;
}
		#link-preview {
            display: none;
            position: absolute;
            width: 150px;
            background: white;
            border: 1px solid #ccc;
            /*border-radius: 8px;*/
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 12px;
            z-index: 1000;
            font-size: 14px;
        }
        #link-preview img {
            width: 100%;
            height: auto;
            /*border-radius: 6px;*/
            margin-bottom: 8px;
        }
        #link-preview .title {
            font-weight: bold;
            margin-bottom: 4px;
        }
        #link-preview .description {
            color: #555;
            margin-bottom: 8px;
        }
        #link-preview .url {
            color: #888;
            font-size: 12px;
        }

        /* Arrow pointer */
        #link-preview::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            margin-left: -10px;
            border-width: 10px;
            border-style: solid;
            border-color: white transparent transparent transparent;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }