* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat Light";
}
a{
	text-decoration: none;
}
body {
	min-height: 100vh;
	background-color: #f9fafb;
	color: #1f2937;
	display: flex;
	flex-direction: column;
}

/* Main Content */
main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
}

h1 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #1f2937;
}


/* Logo Color */

.whois-red {
	color: #EA4335;
}

.whois-yellow {
	color: #FBBC05;
}

.whois-blue {
	color: #4285F4;
}


.bold{
	font-weight: bold;
}



footer {
	padding: 1rem;
	text-align: center;
	font-size: 0.875rem;
	color: #6b7280;
}
footer a{
	color: #6b7280;
}





/* Query Container */

.query-container {
	width: 100%;
	max-width: 38rem;
}

.feature-container {
	width: 100%;
	max-width: 38rem;
}

#whoisForm {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

#domainInput {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	transition: all 0.2s ease;
}

#domainInput:focus {
	outline: none;
	border-color: #165DFF;
	box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.5);
}

#domainInput::placeholder {
	color: #9ca3af;
}

button[type="submit"] {
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: #165DFF;
	color: white;
	border: none;
	border-radius: 0.5rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
	background-color: rgba(22, 93, 255, 0.9);
}

#loading {
	margin-top: 1rem;
	text-align: center;
	color: #4b5563;
}

#resultArea {
	margin-top: 1.5rem;
	padding: 1rem;
	background-color: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
}

#whoisResult {
	font-size: 0.875rem;
	color: #374151;
	white-space: pre-wrap;
	line-height: 1.5;
}


.features {
	width: 100%;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}

.feature {
	flex: 1;
	min-width: 120px;
	text-align: center;
	padding: 25px 20px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #1e293b;
}

.feature p {
	color: #64748b;
	font-size: 0.95rem;
}

.hidden {
	display: none;
}


/* Page Container */
.page-container {
	width: 100%;
	max-width: 48rem;
	background-color: white;
	padding: 2rem;
	border-radius: 0.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	line-height: 1.8;
}

.page-container h2 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1.5rem 0 1rem;
	color: #1e293b;
}

.page-container p {
	margin-bottom: 1rem;
	color: #374151;
	font-size: 0.95rem;
}

.page-container ul {
	margin: 1rem 0 1.5rem 1.5rem;
	color: #374151;
	font-size: 0.95rem;
}

.page-container li {
	margin-bottom: 0.5rem;
}






.page-container .highlight {
	font-weight: 700;
	color: #165DFF;
}





/* FAQ */
.faq-item {
	margin: 1.25rem 0;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 1rem;
}
.faq-item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.faq-question {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.faq-answer {
	color: #374151;
	font-size: 0.95rem;
}


/* Api */
.code-block {
	background-color: #f3f4f6;
	padding: 1rem;
	border-radius: 0.5rem;
	margin: 1rem 0 1.5rem;
	overflow-x: auto;
	font-family: monospace;
	font-size: 0.9rem;
	color: #1e293b;


	background-color: #f3f4f6;
	padding: 1.25rem 1.5rem;
	border-radius: 0.5rem;
	margin: 1rem 0 1.5rem;
	overflow-x: auto;
	font-family: Consolas, "Courier New", monospace; 
	font-size: 0.9rem;
	color: #1e293b;
	line-height: 1.6;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.params-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 1.5rem;
	font-size: 0.95rem;
}

.params-table th, .params-table td {
	padding: 0.75rem;
	text-align: left;
	border: 1px solid #e5e7eb;
}

.params-table th {
	background-color: #f9fafb;
	font-weight: 700;
	color: #1e293b;
}

.params-table td {
	color: #374151;
}








