.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0.75rem 1rem;
    margin: -2.5rem 0rem 3.5rem 0rem;
    background-color: #f5f7f9;
    border-radius: 8px;
    font-size: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb-custom-logged-in {
	margin-top: -4.5rem;
}

.breadcrumb-custom li + li::before {
    content: "›";
    color: #999;
    padding: 0 8px;
    font-weight: bold;
}

.breadcrumb-custom a {
    color: var(--primary-background-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-custom a:hover {
	background: rgba(234, 248, 251, 0.7);
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 15px rgba(26, 124, 145, 0.1);
}

.breadcrumb-custom li:last-child {
    color: #666;
    font-weight: 600;
}