/* Breadcrumb Styles - Add to your common CSS file */
.breadcrumb-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 1.5rem 0; 
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 0.95rem;
    color: #666;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* Separator between breadcrumb items */
.breadcrumb-item:not(:last-child)::after {
    content: '';
    width: 6px;
    height: 6px;
    margin: 0 12px;
    background: #ccc;
    border-radius: 50%;
    opacity: 0.6;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-link:hover {
    color: #2a5298;
    background-color: rgba(42, 82, 152, 0.08);
    transform: translateY(-1px);
}

/* Current page styling */
.breadcrumb-link.current {
    color: #2a5298;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1), rgba(100, 181, 246, 0.1));
    border: 1px solid rgba(42, 82, 152, 0.2);
    cursor: default;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    opacity: 0.8;
}

/* Animation for breadcrumb items */
.breadcrumb-item {
    animation: breadcrumbSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.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 breadcrumbSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0 1rem;
    }

    .breadcrumb-list {
        font-size: 0.9rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }

    .breadcrumb-link {
        padding: 6px 8px;
    }
}