body {
	font-family: Arial, sans-serif;
	background-color: #e5e9f0;
	margin: 0;
	padding: 0;
	color: #333;
	text-align: center;
}
h1 {
	background-color: #d8dee9;
	color: #fff;
	padding: 20px;
	text-align: center;
	margin-bottom: 20px;
}
#popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px;
    border-radius: 12px;
    font-size: 2.5rem;
    text-align: center;
    z-index: 1000;
    display: none; /* Hidden by default */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}
.links {
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.reservedkeywords {
	width: 60%;
	margin: 0 auto;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.fallback {
	width: 420;
	margin: 0 auto;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.history {
	width: 50%;
	margin: 0 auto;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.reserved {
	width: 30%;
	margin: 0 auto;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
	padding: 12px;
	text-align: left;
}
th {
	background-color: #5e81ac;
	color: white;
}
tr:nth-child(even) {
	background-color: #eceff4;
}
tr:hover {
	background-color: #d8dee9;
}
a {
	color: #5e81ac;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
form {
	max-width: 400px;
	margin: 0 auto 20px;
	padding: 20px;
	background-color: #eceff4;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
input[type="text"], input[type="url"] {
	width: 95%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: Arial, sans-serif;
}
button {
	width: 95%;
	padding: 10px;
	background-color: #5e81ac;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: Arial, sans-serif;
}
button:hover {
	background-color: #3b4252;
}
code a {
	color: white;          /* White text for better contrast */
}

code {
	background-color: #81a1c1; /* Red background */
	color: white;          /* White text for better contrast */
	padding: 5px;          /* Padding around the text */
	border-radius: 4px;    /* Rounded corners */
	font-family: monospace; /* Monospace font for code readability */
}
.reset-all {
	display: block;
	width: 200px;
	text-align: center;
	margin: 20px auto;
	padding: 10px;
	background-color: #d08770;
	color: white;
	border-radius: 4px;
	text-decoration: none;
}
.reset-all:hover {
	background-color: #bf616a;
}

.last-queries {
	margin-top: 40px;
	background-color: #eceff4;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.last-queries h2 {
	margin-bottom: 10px;
}
.last-queries ul {
	padding-left: 20px;
}
.last-queries li {
	margin-bottom: 8px;
}
