/**
 * Smart SEO Auto Manager Pro — Frontend CSS
 * Scoped under .ssamp-breadcrumb to avoid ANY theme conflict.
 */

.ssamp-breadcrumb {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 16px;
    padding: 6px 0;
    color: #646970;
    /* No box-sizing reset — inherit from theme */
}

.ssamp-breadcrumb a {
    color: #2271b1;
    text-decoration: none;
}

.ssamp-breadcrumb a:hover {
    text-decoration: underline;
    color: #135e96;
}

.ssamp-breadcrumb .ssamp-sep {
    margin: 0 5px;
    color: #a7aaad;
    display: inline-block;
}

.ssamp-breadcrumb span:last-child {
    color: #1d2327;
    font-weight: 500;
}

/* Dark mode support in frontend */
@media (prefers-color-scheme: dark) {
    .ssamp-breadcrumb { color: #a7aaad; }
    .ssamp-breadcrumb a { color: #72aee6; }
    .ssamp-breadcrumb span:last-child { color: #e2e4e7; }
}
