/* General style - Mode: DARK */
body {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #1e1e1e;
	color: #fff;
	font-family: sans-serif;
	user-select: none;
}

h1 {
	display: block;
}

p {
	display: block;
}

a {
	color: white;
	text-decoration: none;
}

#linkActive {
	text-decoration: underline;
}

#imprint {
	bottom: 0;
}

table, th, td {
  	border: 1px solid white;
  	border-collapse: collapse;
	padding: 10px;
}

/* Middle screen */
.clearTop {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	flex-wrap: wrap;
	min-height: 100vh;
}

/* Fix copy-screen */
.insertData {
	clear: both;
	margin-top: 25px;
}

.imprintData {
    height: 40px;
    position: fixed; 
    bottom: 0%;
    width: 100%; 
    background-color: #292929;
	line-height: 10px;
    opacity: 1;
}

/* Input style */
#enterUrl {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
}

#enterButton {
	width: 100%;
	background-color: #4b566d;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 100%;
}

#copyLink {
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
}

#copyButton {
	padding: 10px;
	font-size: 100%;
}

#copyState {
	background-color: #4b566d;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 100%;
	font-size: 100%;
}

/* Tooltip */
.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 200px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 105%;
	left: 50%;
	margin-left: -115px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}