/**
 * Canonical Tag Checker Widget Styles
 * Green/teal gradient theme
 */

.mte-canonical-tag-checker {
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(17, 153, 142, 0.3);
	transition: all 0.3s ease;
}

.mte-canonical-tag-checker__container {
	max-width: 100%;
}

.mte-canonical-tag-checker__instructions {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__instructions-title {
	font-size: 20px;
	font-weight: 700;
	color: #11998e;
	margin: 0 0 15px 0;
	padding-bottom: 12px;
	border-bottom: 3px solid #38ef7d;
}

.mte-canonical-tag-checker__instructions-text {
	font-size: 15px;
	color: #4a5568;
	line-height: 1.6;
	margin: 0;
}

.mte-canonical-tag-checker__section {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__section-title {
	font-size: 20px;
	font-weight: 700;
	color: #11998e;
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	border-bottom: 3px solid #38ef7d;
}

.mte-canonical-tag-checker__input {
	width: 100%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	background: #f7fafc;
	color: #2d3748;
	font-size: 15px;
	transition: all 0.3s ease;
}

.mte-canonical-tag-checker__input:focus {
	outline: none;
	border-color: #11998e;
	box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

.mte-canonical-tag-checker__textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	background: #f7fafc;
	color: #2d3748;
	font-size: 14px;
	font-family: 'Courier New', Courier, monospace;
	line-height: 1.6;
	resize: vertical;
	transition: all 0.3s ease;
}

.mte-canonical-tag-checker__textarea:focus {
	outline: none;
	border-color: #11998e;
	box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

.mte-canonical-tag-checker__buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 25px;
}

.mte-canonical-tag-checker__button {
	padding: 15px 40px;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	min-width: 180px;
}

.mte-canonical-tag-checker__button--analyze {
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__button--analyze:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.mte-canonical-tag-checker__button--clear {
	background: linear-gradient(135deg, #a8a8a8 0%, #7f7f7f 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__button--clear:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(127, 127, 127, 0.4);
}

.mte-canonical-tag-checker__results {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mte-canonical-tag-checker__status {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__status-content {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.mte-canonical-tag-checker__status-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__status-badge--error {
	background: linear-gradient(135deg, #f56565 0%, #fc8181 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__status-badge--warning {
	background: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__status-badge--info {
	background: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__status-badge--success {
	background: linear-gradient(135deg, #48bb78 0%, #68d391 100%);
	color: #ffffff;
}

.mte-canonical-tag-checker__status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	font-size: 18px;
}

.mte-canonical-tag-checker__issues {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__issues-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mte-canonical-tag-checker__issue {
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid;
	background: #f7fafc;
	transition: all 0.3s ease;
}

.mte-canonical-tag-checker__issue:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__issue--error {
	border-left-color: #f56565;
	background: rgba(245, 101, 101, 0.05);
}

.mte-canonical-tag-checker__issue--warning {
	border-left-color: #ed8936;
	background: rgba(237, 137, 54, 0.05);
}

.mte-canonical-tag-checker__issue--info {
	border-left-color: #4299e1;
	background: rgba(66, 153, 225, 0.05);
}

.mte-canonical-tag-checker__issue--success {
	border-left-color: #48bb78;
	background: rgba(72, 187, 120, 0.05);
}

.mte-canonical-tag-checker__issue-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.mte-canonical-tag-checker__issue-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
}

.mte-canonical-tag-checker__issue--error .mte-canonical-tag-checker__issue-icon {
	background: #f56565;
	color: #ffffff;
}

.mte-canonical-tag-checker__issue--warning .mte-canonical-tag-checker__issue-icon {
	background: #ed8936;
	color: #ffffff;
}

.mte-canonical-tag-checker__issue--info .mte-canonical-tag-checker__issue-icon {
	background: #4299e1;
	color: #ffffff;
}

.mte-canonical-tag-checker__issue--success .mte-canonical-tag-checker__issue-icon {
	background: #48bb78;
	color: #ffffff;
}

.mte-canonical-tag-checker__issue-type {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mte-canonical-tag-checker__issue--error .mte-canonical-tag-checker__issue-type {
	color: #f56565;
}

.mte-canonical-tag-checker__issue--warning .mte-canonical-tag-checker__issue-type {
	color: #ed8936;
}

.mte-canonical-tag-checker__issue--info .mte-canonical-tag-checker__issue-type {
	color: #4299e1;
}

.mte-canonical-tag-checker__issue--success .mte-canonical-tag-checker__issue-type {
	color: #48bb78;
}

.mte-canonical-tag-checker__issue-message {
	font-size: 15px;
	color: #2d3748;
	margin-bottom: 10px;
	line-height: 1.6;
}

.mte-canonical-tag-checker__issue-recommendation {
	font-size: 14px;
	color: #4a5568;
	line-height: 1.6;
	padding: 12px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
}

.mte-canonical-tag-checker__issue-recommendation strong {
	color: #11998e;
}

.mte-canonical-tag-checker__no-issues {
	text-align: center;
	padding: 40px;
	font-size: 16px;
	color: #48bb78;
	font-weight: 600;
}

.mte-canonical-tag-checker__details {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-canonical-tag-checker__details-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mte-canonical-tag-checker__detail-item {
	padding: 20px;
	background: #f7fafc;
	border-radius: 10px;
	border-left: 4px solid #11998e;
}

.mte-canonical-tag-checker__detail-label {
	font-size: 14px;
	font-weight: 700;
	color: #11998e;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.mte-canonical-tag-checker__detail-value {
	font-size: 15px;
	color: #2d3748;
	word-break: break-all;
	line-height: 1.6;
}

.mte-canonical-tag-checker__detail-tags {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mte-canonical-tag-checker__tag-item {
	padding: 15px;
	background: #ffffff;
	border-radius: 8px;
	border: 2px solid #e2e8f0;
}

.mte-canonical-tag-checker__tag-type {
	font-size: 13px;
	font-weight: 600;
	color: #718096;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.mte-canonical-tag-checker__tag-code {
	display: block;
	padding: 12px;
	background: #2d3748;
	color: #38ef7d;
	border-radius: 6px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 13px;
	line-height: 1.6;
	word-break: break-all;
	overflow-x: auto;
}

.mte-canonical-tag-checker__notification {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 25px;
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	color: #ffffff;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
	font-weight: 600;
	font-size: 14px;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 9999;
}

.mte-canonical-tag-checker__notification.show {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 767px) {
	.mte-canonical-tag-checker {
		padding: 20px;
	}

	.mte-canonical-tag-checker__instructions,
	.mte-canonical-tag-checker__section,
	.mte-canonical-tag-checker__status,
	.mte-canonical-tag-checker__issues,
	.mte-canonical-tag-checker__details {
		padding: 20px;
	}

	.mte-canonical-tag-checker__button {
		width: 100%;
	}

	.mte-canonical-tag-checker__status-badge {
		padding: 15px 25px;
		font-size: 16px;
	}
}
