/* General style - Mode: DARK */
body {
	width: 100%;
	margin: 0;
	padding: 0;
    background-color: #0e0e10;
    color: #94a1b2;
    font-family: "Poppins", sans-serif;
	user-select: none;
}
		
img {
	cursor: pointer;
	width: 150px;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
	margin: 20px;
}

h1 {
	display: block;
    color: #94a1b2;
}

p {
	display: block;
}

a {
	max-width: 600px;
	color: white;
	text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

#linkActive {
	text-decoration: underline;
}

#imprint {
	bottom: 0;
}

th, td {
	background-color: #0F111A;
	border-bottom: solid 2px #FF4151;
	padding: 10px;
}

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

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

.imprintData {
    color: #94a1b2;
	font-size: 10px;
    height: 40px;
    position: fixed; 
    bottom: 0%;
    width: 100%;
	line-height: 10px;
    opacity: 1;
}

/* Input style */
#enterUrl {
	width: 100%;
	height: 50px;
	background-color: transparent;
	color: white;
	padding: 12px 20px;
	margin: 8px 0;
	border: solid 2px white;
	border-radius: 15px;
	box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
	font-size: 100%;
    outline: none;
}

#enterUrl::placeholder {
	color: #94a1b2;
}

#enterUrl:focus {
	border: solid 2px #FF4151;
}

#enterButton {
	width: 100%;
	background-color: transparent;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: solid 2px white;
	border-radius: 15px;
	cursor: pointer;
	font-size: 100%;
	font-size: 100%;
    transition: all 0.3s ease;
	height: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

#enterButton:hover {
    border: solid 2px #FF4151;
	color: #FF4151;
}

#copyLink {
	height: 50px;
	background-color: transparent;
	color: white;
	padding: 12px 20px;
	margin: 8px 0;
	border: solid 2px white;
	border-radius: 15px;
	box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
	font-size: 100%;
    outline: none;
}

#copyButton {
	padding: 10px;
	font-size: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

#copyState {
	background-color: transparent;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: solid 2px white;
	border-radius: 15px;
	cursor: pointer;
	font-size: 100%;
	font-size: 100%;
    transition: all 0.3s ease;
	height: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

#copyState:hover {
    border: solid 2px #FF4151;
	color: #FF4151;
}

/* 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;
}

.llink {
    text-decoration: none;
    color: #a6a8b8;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.llink:hover {
    color: white;
}

.legal {
    text-align: center;
    font-size: 10px;
    animation: fadeInUp .8s;
    color: #94a1b2;
}

#popup {
    text-align: center;
    min-width: 50%;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 1000;
}

#popup button {
	width: 100%;
	height: 50px;
	background-color: #9147ff;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 100%;
    transition: background-color 0.3s ease;
}

#popup button:hover {
    background-color: #772ce8;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
}