#eeat-schema-meta-box .form-table th {
    width: 150px;
    padding: 15px 10px 15px 0;
    vertical-align: top;
}

#eeat-schema-meta-box .form-table td {
    padding: 15px 10px;
    vertical-align: top;
}

#eeat-custom-schema {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.eeat-testing-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#eeat-schema-preview pre {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    white-space: pre-wrap;
}

.eeat-json-valid {
    color: #46b450;
    font-weight: 600;
}

.eeat-json-invalid {
    color: #dc3232;
    font-weight: 600;
}

.eeat-json-warning {
    color: #f56e28;
    font-weight: 600;
}

/* multiple author meta box style */
#eeat-multiple-authors-container {
    margin: 0;
}

.eeat-author-search-container {
    position: relative;
    margin-bottom: 15px;
}

.eeat-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.eeat-search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.eeat-search-result-item:hover {
    background: #f8f9fa;
}

.eeat-search-result-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.eeat-search-result-info strong {
    display: block;
    font-size: 13px;
}

.eeat-search-result-info small {
    color: #666;
    font-size: 11px;
}

.eeat-authors-list {
    margin-bottom: 15px;
}

.eeat-author-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #f9f9f9;
}

.eeat-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eeat-author-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.eeat-author-details strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
}

.eeat-author-details small {
    color: #666;
    font-size: 11px;
}

.eeat-role-select,
.eeat-author-contribution input,
.eeat-author-percentage input {
    font-size: 12px;
}

.eeat-author-percentage {
    display: flex;
    align-items: center;
    gap: 2px;
}

.eeat-remove-author {
    color: #a00;
    text-decoration: none;
    font-size: 12px;
}

.eeat-remove-author:hover {
    color: #dc3232;
}

.eeat-authors-help {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.eeat-authors-help .description {
    margin: 0 0 5px 0;
    font-style: italic;
}

@media (max-width: 782px) {
	.eeat-author-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.eeat-author-role,
	.eeat-author-contribution,
	.eeat-author-percentage {
		justify-self: stretch;
	}
}

@media screen and (max-width: 768px) {
    .eeat-testing-buttons {
        flex-direction: column;
    }

    .eeat-testing-buttons .button {
        width: 100%;
        text-align: center;
    }
}