/* Breadcrumb styling with DQ red theme */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

.breadcrumb-item a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #8B0000;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

/* Dark theme support */
body.dark-theme .breadcrumb {
    background-color: #2c2c2c;
    border: 1px solid #444;
}

body.dark-theme .breadcrumb-item a {
    color: #FF6B6B;
}

body.dark-theme .breadcrumb-item a:hover {
    color: #DC143C;
}

body.dark-theme .breadcrumb-item.active {
    color: #e0e0e0;
}

body.dark-theme .breadcrumb-item + .breadcrumb-item::before {
    color: #888;
}
