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

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://imodd.sierra-dev.de/');
    background-position: center;
    background-size: cover;
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 16, 0.7); /* Farbe anpassen */
    backdrop-filter: blur(5px); /* FÃƒÂ¼r den Blureffekt */
    -webkit-backdrop-filter: blur(5px); /* Safari-UnterstÃƒÂ¼tzung */
}

h1 {
	display: block;
}

p {
	display: block;
}

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

#linkActive {
	text-decoration: underline;
}

#imprint {
	bottom: 0;
}

table, th, td {
    background-color: #ffffff11;
    border: none;
    border-radius: 10px;
    padding: 10px;
}

table {
    max-width: 50%;
    min-width: 50%;
}

/* 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;
	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;
	padding: 12px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
    outline: none;
}

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

#enterButton:hover {
    background-color: #b27701;
}

#copyLink {
	padding: 12px 20px;
	height: 50px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
    outline: none;
}

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

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

#copyState:hover {
    background-color: #b27701;
}

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