body {
    font-family: sans-serif;
    line-height: 1.7;
}

#blogInfo ol,
#blogInfo ul {
    list-style-position: inside;
    padding-left: 18px;
    margin-bottom: 12px;
}

#blogInfo ul {
    list-style-type: circle;
}

.rating i {
    font-size: 18px;
    color: white;
    /* Star fill white */
    -webkit-text-stroke: 1px #f5b50a;
    /* Golden border */
    margin-right: 2px;
}

.rating i.filled {
    color: #f5b50a;
    /* Gold fill for selected/hover */
    -webkit-text-stroke: 1px #f5b50a;
    /* Border also gold */
}

.rating span {
    color: #777;
    font-size: 14px;
    margin-left: 6px;
}

/* Breadcrumbs Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb a {
    color: #003366;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li+li:before {
    content: "\f105";
    /* FontAwesome angle right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 0 10px;
    color: #ccc;
}

.breadcrumb .active {
    color: #777;
    white-space: nowrap;
}

/* Related Blogs Sidebar Styles */
.related-blogs-sidebar {
    margin-top: 20px;
}

.related-blogs-sidebar h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003366;
    border-bottom: 2px solid #f5b50a;
    padding-bottom: 10px;
}

.sidebar-blog-tile {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.sidebar-blog-tile:hover {
    transform: translateY(-3px);
}

.sidebar-blog-tile-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f0f0f0;
}

.sidebar-blog-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sidebar-blog-tile:hover .sidebar-blog-tile-image img {
    transform: scale(1.1);
}

.sidebar-blog-tile-content {
    padding: 12px;
}

.sidebar-blog-tile-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #003366;
    line-height: 1.4;
    margin-top: 0;
}

.sidebar-blog-tile-content h3 a {
    color: inherit;
    text-decoration: none;
}

.sidebar-blog-tile-content h3 a:hover {
    color: #4a66f7;
}

.sidebar-read-more {
    font-weight: 600;
    color: #003366;
    text-decoration: none;
    font-size: 12px;
}

.sidebar-read-more:hover {
    color: #4a66f7;
}

/* Scroll Progress Bar Styles */
.progress-container {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    /* Light grey background for the track */
    position: sticky;
    top: 90px;
    /* Adjust this based on the sticky header height */
    z-index: 999;
    margin: 10px 0 20px 0;
}

.progress-bar {
    height: 4px;
    background: #f5b50a;
    /* Match the gold theme color */
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Social Share Styles */
.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.share-label {
    font-weight: 700;
    margin-right: 10px;
    color: #003366;
    text-transform: uppercase;
    font-size: 12px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 16px;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #000000;
}

/* Modern X logo style */
.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.rate-star {
    cursor: pointer;
    color: transparent;
    /* Hide fill */
    -webkit-text-stroke: 1px black;
    /* Black border */
    font-size: 24px;
    transition: color 0.2s;
    position: relative;
    display: inline-block;
}

.rate-star.hover,
.rate-star.selected {
    color: gold !important;
    /* Fill for hover/selected */
    -webkit-text-stroke: 1px gold !important;
    /* Border same as fill */
}

.rating.is-hovering .rate-star {
    color: transparent !important;
    -webkit-text-stroke: 1px black !important;
}

.rating.is-hovering .rate-star.hover {
    color: gold !important;
    -webkit-text-stroke: 1px gold !important;
}

.rating.is-hovering .rate-star.partial::after {
    display: none;
}

.rate-star.partial {
    position: relative;
    color: #ccc;
    /* Background star color */
    -webkit-text-stroke: 1px #ccc;
}

.rate-star.partial::after {
    content: "\f005";
    /* FontAwesome star icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--percent);
    overflow: hidden;
    color: gold;
    -webkit-text-stroke: 1px gold;
}