/* Container */
.breadcrumbs-container {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #2FA4E7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0 2rem;
}

/* Breadcrumb list */
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
    color: #eee;
}

/* Remove Mobirise checkmark bullets from breadcrumb items */
.breadcrumb-list li::before {
    content: none;
    display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
}

/* Breadcrumb links */
.breadcrumb-item a {
    text-decoration: none;
    color: #eee; /* Adjust to match your theme */
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    text-decoration: underline;
    color: #fff;
}

.last-updated {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .breadcrumbs-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .last-updated {
        display: none;
    }
}
