/* Breadcrumbs Styles */
.seostar-breadcrumbs {
    overflow: hidden;
    font-family: sans-serif;
    margin-bottom: 1.5em;
}

.seostar-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.seostar-breadcrumbs li {
    display: block;
    position: relative;
    margin-right: 15px;
    background-color: #0073aa;
    line-height: 28px;
    padding: 0 10px 0 20px;
}

.seostar-breadcrumbs li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0;
    background-color: transparent;
}

.seostar-breadcrumbs li a:hover {
    background-color: #0085ba;
}

.seostar-breadcrumbs li::before {
    content: "";
    position: absolute;
    top: 0;
    left: -14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 14px;
    border-color: transparent transparent transparent white;
}

.seostar-breadcrumbs li::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 14px;
    border-color: transparent transparent transparent #0073aa;
}

.seostar-breadcrumbs li a:hover::after {
    border-left-color: #0085ba;
}

.seostar-breadcrumbs li:first-child {
    padding-left: 15px;
    border-radius: 4px 0 0 4px;
}

.seostar-breadcrumbs li:first-child::before {
    display: none;
}

.seostar-breadcrumbs li:last-child {
    background-color: #f5f5f5;
    color: red;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

.seostar-breadcrumbs li:last-child::after {
    display: none;
}

/* Table of Contents Styles */
.seostar-toc {
    background-color: #f9f9f9;
    border: 1px solid #d9534f;
    padding: 15px;
    margin-bottom: 1.5em;
    width: auto;
    display: inline-block;
    min-width: 250px;
}

.seostar-toc h3 {
    background-color: #f2dede;
    color: #a94442;
    padding: 10px 15px;
    margin: -15px -15px 10px -15px;
    font-size: 1.1em;
    font-weight: bold;
}

.seostar-toc ul {
    margin: 0;
    padding-left: 20px;
}

.seostar-toc ul ul {
    margin-left: 15px;
}

.seostar-toc li {
    margin-bottom: 0.5em;
}

.seostar-toc a {
    color: #1e8a1e;
    text-decoration: none;
}

.seostar-toc a:hover {
    text-decoration: underline;
}