section .url-input-group {
	display: flex;
	gap: 1.5rem;
}
section .url-input-group .input-wrapper {
	width: calc(100% - 1.5rem - 15rem);
	margin-top: 0;
}
section .url-input-group .button {
	width: 15rem;
}
section .loading {
	text-align: center;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
section #results {
	margin-top: 2rem;
}

section .loading::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #000000;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
	margin-left: 10px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

section .box {
	margin-bottom: 3rem;
}
section table th {
	white-space: nowrap;
}

section .preview-card {
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: #ffffff;
}

section .google-preview {
	padding: 2rem;
}

section .google-title {
	color: #1a0dab;
	font-size: 1.8rem;
	font-weight: normal;
	margin-bottom: 0.5rem;
	cursor: pointer;
	line-height: 1.3;
}

section .google-url {
	color: #006621;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

section .google-favicon {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 0.2rem;
	flex-shrink: 0;
}

section .google-favicon-placeholder {
	width: 1.6rem;
	height: 1.6rem;
	background: #f0f0f0;
	border-radius: 0.2rem;
	flex-shrink: 0;
}

section .google-description {
	color: #545454;
	font-size: 1.4rem;
	line-height: 1.4;
}

section .social-preview {
	display: flex;
	background: white;
	overflow: hidden;
}

section .social-image {
	width: 15rem;
	height: 15rem;
	object-fit: cover;
	flex-shrink: 0;
}

section .social-content {
	padding: 2rem;
	flex: 1;
}

section .social-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #1c1e21;
	line-height: 1.3;
}
section .social-description {
	font-size: 1.4rem;
	color: #65676b;
	line-height: 1.4;
	margin-bottom: 0.8rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 2.6em;
	overflow: hidden;
}
section .social-domain {
	font-size: 1.2rem;
	color: #8a8d91;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
section .social-image-wrapper {
	width: 15rem;
	aspect-ratio: 1;
	line-height: 0;
}
section .social-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

section .twitter-preview {
	background: white;
	border: 1px solid #e1e8ed;
}

section .twitter-image {
	width: 100%;
	height: 20rem;
	object-fit: cover;
}

section .twitter-content {
	padding: 1.5rem;
}

section .twitter-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #14171a;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

section .twitter-description {
	font-size: 1.5rem;
	color: #657786;
	line-height: 1.3;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 2.6em;
	overflow: hidden;
}

section .twitter-domain {
	font-size: 1.5rem;
	color: #657786;
}

section .favicon-preview {
	display: flex;
	gap: 3rem;
	align-items: center;
	flex-wrap: wrap;
}

section .favicon-size {
	text-align: center;
}

section .favicon-size h4 {
	margin-bottom: 0.5rem;
	color: var(--color-gray);
	font-size: 1.4rem;
}

section .favicon-16 {
	width: 16px;
	height: 16px;
	border: 1px solid #dee2e6;
	border-radius: 2px;
}

section .favicon-32 {
	width: 32px;
	height: 32px;
	border: 1px solid #dee2e6;
	border-radius: 3px;
}

section .favicon-128 {
	width: 128px;
	height: 128px;
	border: 1px solid #dee2e6;
	border-radius: 8px;
}

section .favicon-placeholder {
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6c757d;
	font-size: 1rem;
	text-align: center;
}

section .error {
	background: #f8d7da;
	color: #721c24;
	padding: 2rem;
	border-radius: 0.5rem;
	margin: 2rem 0 0 0;
}

section .no-image {
	width: 15rem;
	height: 15rem;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6c757d;
	font-size: 1.2rem;
	border-radius: 8px;
}