/*
 * Exotic Clones SEO Enhancements - Custom Styles
 */

.ec-trust-factors {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #333; /* Default text color */
}

.ec-trust-factors h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.ec-trust-factors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ec-trust-factors li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
    display: flex; /* Makes icon and text align */
    align-items: center;
}

.ec-trust-factors li i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Specific icon colors */
.ec-trust-factors li i.fa-check-circle {
    color: #28a745; /* Green */
}

.ec-trust-factors li i.fa-truck {
    color: #007bff; /* Blue */
}

/* New icon color for breeder cut */
.ec-trust-factors li i.fa-seedling {
    color: #8B4513; /* Brown/Earthy tone */
}

.ec-trust-factors p {
    margin-top: 15px;
    font-size: 0.85em;
}

.ec-trust-factors p a {
    color: #007bff;
    text-decoration: underline;
}

/* --- New Styles for Link Checker Results --- */
#ec-seo-link-checker-results {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.ec-seo-link-status {
    font-weight: bold;
    margin-bottom: 5px;
}

.ec-seo-link-status.success {
    color: green;
}

.ec-seo-link-status.error {
    color: red;
}

.ec-seo-broken-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ec-seo-broken-links li {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #555;
    display: flex;
    align-items: flex-start; /* Align text to top if wrapping */
}

.ec-seo-broken-links li .dashicons {
    margin-right: 5px;
    color: #dc3545; /* Red for warning */
    font-size: 1.1em;
    line-height: 1.4; /* Adjust for better vertical alignment with text */
}
.dashicons-spin {
    animation: dashicons-spin 1s infinite linear;
}

@keyframes dashicons-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}