/* Breadcrumbs Component */
.breadcrumbs {
    margin-bottom: 32px;
    padding: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 400;
}

.breadcrumb-link:hover {
    color: #43C7FF;
}

.breadcrumb-home-icon {
    color: inherit;
    width: 14px;
    height: 14px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    font-weight: 300;
    user-select: none;
}

.breadcrumb-text {
    color: #43C7FF;
    font-weight: 500;
    padding: 6px 8px;
}

/* Hover Effects */
.breadcrumb-link:hover .breadcrumb-home-icon {
    color: #43C7FF;
}

/* Animation */
.breadcrumb-item {
    opacity: 0;
    transform: translateX(-10px);
    animation: breadcrumbFadeIn 0.3s ease forwards;
}

.breadcrumb-item:nth-child(1) {
    animation-delay: 0.1s;
}

.breadcrumb-item:nth-child(2) {
    animation-delay: 0.2s;
}

.breadcrumb-item:nth-child(3) {
    animation-delay: 0.3s;
}

.breadcrumb-item:nth-child(4) {
    animation-delay: 0.4s;
}

.breadcrumb-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes breadcrumbFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumbs {
        margin-bottom: 24px;
    }

    .breadcrumb-list {
        font-size: 13px;
        gap: 2px;
    }

    .breadcrumb-separator {
        margin: 0 6px;
    }

    .breadcrumb-link,
    .breadcrumb-text {
        padding: 4px 6px;
    }

    .breadcrumb-home-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 12px;
    }

    .breadcrumb-text {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}