/* Breadcrumbs styling */
.breadcrumbs {
    background: #f5f7fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #7a8699;
}

.breadcrumbs a {
    color: #536DFE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #3d5afe;
    text-decoration: underline;
}

.breadcrumbs .active {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.8rem;
    }
    
    .breadcrumbs ol {
        gap: 0.3rem;
    }
}
