.breadcrumb-container {
    padding: 20px 0 10px 0;
    /* Sayfa yerleşimine göre ayarlanabilir */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    /* Pasif öğeler yarı şeffaf beyaz */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    /* Arka plan karmaşıksa okunurluğu artırır */
}


/* Ayraç (Slash) ekleme */

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a,
.breadcrumb-item span {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item span:hover {
    color: #ffffff;
    /* Üzerine gelince parlaması için */
}

.breadcrumb-item.active {
    color: #ffffff;
    /* Aktif sayfa tam beyaz */
    font-weight: 600;
}