.onex-seo-author-settings { margin-top: 20px; }
.onex-seo-language-block { 
	background: #fff; 
	padding: 20px; 
	margin-bottom: 20px; 
	border: 1px solid #ccd0d4;
	border-radius: 4px;
}
.onex-seo-language-block h3 { 
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.onex-seo-language-block .form-table th { width: 200px; }
.onex-seo-language-block input[type="text"],
.onex-seo-language-block textarea { width: 100%; }

.onex-seo-template-help {
	background: #fff;
	padding: 20px;
	margin: 20px 0;
	border: 1px solid #ccd0d4;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
	top: 32px;
	z-index: 100;
}

.template-tags-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
	margin: 20px 0;
}

.template-tag {
	background: #f8f9fa;
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 4px;
	position: relative;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.template-tag:hover {
	background: #f0f0f0;
}

.template-tag code {
	display: block;
	margin-bottom: 5px;
	color: #007bff;
}

.copy-notification {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 12px;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translate(-50%, 10px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}
/* Стили для переключателя */
.onex-seo-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.onex-seo-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.onex-seo-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.onex-seo-toggle .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.onex-seo-toggle input:checked + .slider {
    background-color: #2196F3;
}

.onex-seo-toggle input:checked + .slider:before {
    transform: translateX(26px);
}

.onex-seo-indexing-control {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}